]> granicus.if.org Git - clang/history - lib/Basic/Diagnostic.cpp
DiagnosticIDs: use diagnostic severities to simplify extension handling
[clang] / lib / Basic / Diagnostic.cpp
2014-06-22 Alp TokerDiagnosticIDs: use diagnostic severities to simplify...
2014-06-12 Alp TokerDiagnosticsEngine: update severity setters to new termi...
2014-06-12 Alp TokerComplete the switch from mappings to declarative diagno...
2014-06-12 Craig TopperUse StringRef to simplify code. No functional change.
2014-06-12 Craig TopperUse ArrayRef in some function parameters instead of...
2014-06-10 Alp TokerImprove diagnostic mapping terminology
2014-05-22 Alexander KornienkoRemove limits on the number of fix-it hints and ranges...
2014-05-08 Craig Topper[C++11] Use 'nullptr'.
2014-01-26 Alp TokerFix -Wreturn-type build failure on ASTMatchers, plus...
2014-01-26 Alp TokerRemove flawed diagnostic mapping functions
2014-01-07 Alp TokerBring back magic constants in the digraph diagnostic
2014-01-06 Alp TokerSupport diagnostic formatting of keyword tokens
2014-01-06 Alp TokerRename getTokenSimpleSpelling() to getPunctuatorSpelling()
2013-12-26 Aaron BallmanTeach the diagnostics engine about the Attr type to...
2013-12-24 Alp TokerSupport and use token kinds as diagnostic arguments
2013-05-03 Argyrios KyrtzidisRevert r177218.
2013-05-03 Douglas GregorRemove DiagnosticConsumer::clone(), a bad idea that...
2013-05-03 Douglas GregorWhen building a module, forward diagnostics to the...
2013-05-03 Rafael EspindolaInitialize WarnOnSpellCheck.
2013-02-24 Aaron BallmanMoving initialization into the initializer list and...
2013-02-19 Aaron BallmanFixing a typo where FixIts was accidentally self-assign...
2013-02-08 Jordan RoseExcise <cctype> from Clang (except clang-tblgen) in...
2013-01-30 Filipe CabecinhasChanged to static_cast, due to post-commit review.
2013-01-30 Filipe CabecinhasCast to remove the narrowing conversion error in c...
2013-01-30 Richard TrieuHandle passing non-Qualtypes to %diff better. Instead...
2013-01-12 Dmitri GribenkoRemove useless 'llvm::' qualifier from names like Strin...
2012-12-20 Richard SmithFix code that attempted to produce a diagnostic with...
2012-12-07 DeLesley HutchinsFix analysis based warnings so that all warnings are...
2012-12-04 Chandler CarruthSort all of Clang's files under 'lib', and fix up the...
2012-10-23 Douglas GregorMake DiagnosticOptions intrusively reference-counted...
2012-09-22 Jordan RoseUse llvm::getOrdinalSuffix to print ordinal numbers...
2012-08-17 Richard SmithAvoid binding a reference to a dereferenced null pointe...
2012-08-14 Richard SmithFix undefined behavior: reference bound to dereferenced...
2012-08-14 Richard SmithFix undefined behavior: don't bind a dereferenced null...
2012-08-10 Joerg SonnenbergerAdd missing cctype includes.
2012-07-13 Richard TrieuModify tree printing mode for template type diffing...
2012-07-11 Jordan RoseEmit -verify diagnostics even when we have a fatal...
2012-07-10 Richard TrieuProperly update the FormattedArgs vector when the templ...
2012-06-29 Richard TrieuUpdate the %diff modifer to have an alternate string...
2012-06-26 Richard TrieuAdd template type diffing to Clang. This feature will...
2012-06-15 James DennettDocumentation cleanup: delete doc comments from source...
2012-03-13 Daniel Dunbar[Basic] Fix up DiagnosticBuilder::{FlushCounts,Emit...
2012-03-13 Daniel Dunbar[Basic] Stop using a SmallVector<> for Diagnostic....
2012-02-22 Bill WendlingMore ArrayRef-ification of methods.
2012-02-20 Dylan NoblesmithBasic: import IntrusiveRefCntPtr<> into clang namespace
2012-02-07 Chad RosierFix indentation and an 80-column violation.
2012-02-07 Benjamin KramerRevert my patches which removed Diagnostic.h includes...
2012-02-07 Chad RosierIn r149662, setDiagnosticMapping was modified to not...
2012-02-05 Dylan NoblesmithBasic: import SmallString<> into clang namespace
2012-02-04 Benjamin KramerMove a method from IdentifierTable.h out of line and...
2012-02-04 Benjamin KramerMove Storage and StorageAllocator out of the PartialDia...
2012-02-03 Argyrios KyrtzidisChange the fixed array of FixitHints to a SmallVector...
2012-02-03 Chad Rosier[frontend] Don't allow a mapping to a warning override...
2012-01-28 Argyrios KyrtzidisDiagnosticsEngine::setMappingToAllDiagnostics() does...
2012-01-27 Argyrios KyrtzidisDue to a bug, -Wno-everything works like -Weverything...
2011-12-20 David BlaikieUnweaken vtables as per http://llvm.org/docs/CodingStan...
2011-12-16 Richard SmithC++11 constexpr: Add note stacks containing backtraces...
2011-11-09 Argyrios Kyrtzidis[PCH] Fix reading from PCH of diagnostic pragmas.
2011-10-04 Daniel DunbarBasic/Diagnostics: Apparently, #pragma ... diagnostic...
2011-09-29 Daniel DunbarBasic/Diagnostic: Kill off a few unnecessary functions...
2011-09-29 Daniel DunbarBasic/Diagnostics: Rewrite DiagnosticIDs::getDiagnostic...
2011-09-29 Daniel DunbarBasic/Diagnostics: Add three explicit bits to Diagnosti...
2011-09-29 Daniel DunbarBasic/Diagnostics: Add a DiagnosticIDs::getDiagnosticsI...
2011-09-29 Daniel DunbarBasic/Diagnostics: Move setDiagnosticMapping() to using...
2011-09-29 Daniel DunbarBasic/Diagnostic: Factor out
2011-09-26 David BlaikieRename DiagnosticInfo to Diagnostic as per issue 5397
2011-09-25 David BlaikieRename DiagnosticClient to DiagnosticConsumer as per...
2011-09-25 David BlaikieRename Diagnostic to DiagnosticsEngine as per issue...
2011-08-18 Ted KremenekImplement '-Weverything', which enables all warnings...
2011-07-29 Argyrios KyrtzidisMake DiagnosticErrorTrap keep a count of the errors...
2011-07-23 Chris LattnerMove ArrayRef to LLVM.h and eliminate now-redundant...
2011-07-23 Chris Lattnerremove unneeded llvm:: namespace qualifiers on some...
2011-07-19 Douglas GregorRevamp the SourceManager to separate the representation...
2011-07-11 Chandler CarruthApply patch from Richard Trieu to fix PR9548:
2011-07-06 Douglas GregorKeep track of when "unrecoverable" errors occur, then...
2011-05-25 Argyrios KyrtzidisA StringRef-ication of the DiagnosticIDs API and internals.
2011-05-05 Argyrios KyrtzidisIntroduce a Diagnostic::Report function that accepts...
2011-04-15 Chris Lattnerfix a bunch of comment typos found by codespell. Patch by
2011-03-26 Argyrios KyrtzidisFor Diagnostic::Reset() also reset the state related...
2011-03-21 Ted KremenekRelax assertion to fail during crash recovery cleanup.
2011-03-21 Ted KremenekUse CrashRecoveryContextCleanup objects to reclaim...
2011-01-31 Douglas GregorTeach Diagnostic::setClient() to free the existing...
2011-01-14 Argyrios KyrtzidisProperly propagate #pragma diagnostic mappings from...
2010-12-15 Argyrios KyrtzidisFix diagnostic pragmas.
2010-11-19 Benjamin KramerInitialize StoredDiagnostic's members in order.
2010-11-19 Douglas GregorExtend the libclang diagnostic API to provide informati...
2010-11-18 Argyrios KyrtzidisSince multiple diagnostics can share one diagnostic...
2010-11-18 Argyrios KyrtzidisRefactoring of Diagnostic class.
2010-10-14 John McCallTeach Diagnostic to recursively expand inside %plural...
2010-10-13 Douglas GregorFix a silly bug in the suppression of non-error diagnos...
2010-10-11 Douglas GregorEliminate -fdiagnostics-binary and all of the infrastru...
2010-08-18 Douglas GregorSimplify FixItHint by eliminated the unnecessary Insert...
2010-08-18 Chandler CarruthCheck whether errors should be included in the diagnost...
2010-08-15 Argyrios KyrtzidisRemove dead code, caught by unused function warnings.
2010-08-01 Eli FriedmanPR7777: Set EnabledByDefault to something useful, inste...
2010-07-31 Douglas GregorImplement dependency analysis for the precompiled pream...
2010-07-26 Dan GohmanFix namespace polution.
2010-07-25 Benjamin KramerWrap bit mangling logic for DiagMappings in its own...
2010-07-19 Douglas GregorIntroduce a new libclang API, clang_reparseTranslationU...
2010-06-18 Chris Lattnerintroduce a new CharSourceRange class, and enhance...
next