[llvm-profdata] Add SaturatingAdd/SaturatingMultiply Helper Functions
[oota-llvm.git] / include / llvm / Support / ErrorOr.h
2015-11-05 Kevin EnderbyReapply r250906 with many suggested updates from Rafael...
2015-10-21 Kevin EnderbyBacking out commit r250906 as it broke lld.
2015-10-21 Kevin EnderbyThis removes the eating of the error in Archive::Child...
2015-10-16 Lang HamesAdd emacs c++ mode hint.
2015-05-21 Michael J. Spencer[Support] Fix ErrorOr equality operator.
2015-02-15 Aaron BallmanRemoving LLVM_EXPLICIT, as MSVC 2012 was the last reaso...
2014-11-04 Justin BognerErrorOr: Be more explicit in the implicit conversion...
2014-10-20 Alexey SamsonovTry to fix GCC error about invalid use of const_cast...
2014-09-03 David BlaikieEnsure ErrorOr cannot implicitly invoke explicit ctors...
2014-08-13 Benjamin KramerCanonicalize header guards into a common format.
2014-06-13 Rafael EspindolaFinishing touch for the std::error_code transition.
2014-06-12 Rafael EspindolaDon't use 'using std::error_code' in include/llvm.
2014-06-12 Rafael EspindolaRemove system_error.h.
2014-06-12 Rafael EspindolaReplace llvm::error_code with std::error_code.
2014-06-12 Rafael EspindolaDon't import make_error_code into the llvm namespace.
2014-06-12 Rafael EspindolaRemove some low hanging fruit from system_error.h
2014-05-31 Rafael EspindolaUse error_code() instead of error_code::succes()
2014-03-07 Benjamin Kramer[C++11] Replace LLVM-style type traits with C++11 stand...
2014-03-01 Chandler Carruth[C++11] Remove LLVM_HAS_CXX11_TYPETRAITS now that it...
2014-03-01 Chandler Carruth[C++11] Remove the R-value reference #if usage from...
2014-02-19 Alexey SamsonovTry to revive buildbots after r201620
2014-01-16 Rafael EspindolaUse LLVM_EXPLICIT instead of a function pointer as...
2014-01-09 Rafael EspindolaUpdate example to be more idiomatic.
2014-01-09 Rafael EspindolaUse the existing typedef to avoid forming a reference...
2014-01-08 Rafael EspindolaFix the C++03 build.
2014-01-08 Rafael EspindolaUse getError and remove the error_code operator.
2014-01-08 Rafael EspindolaAdd get and getError methods to ErrorOr.
2014-01-08 Rafael EspindolaAdd missing rename from the previous commit.
2014-01-08 Rafael EspindolaRename get to getStorage and getError to getErrorStorage.
2014-01-07 Chandler CarruthRe-sort all of the includes with ./utils/sort_includes...
2013-11-05 Rafael EspindolaRemove another unused, and IMHO, not very desirable...
2013-11-05 Rafael EspindolaFix MSVC build by not putting an error_code directly...
2013-11-05 Rafael EspindolaSimplify ErrorOr.
2013-10-22 Benjamin KramerSpeling fixes.
2013-02-28 Michael J. Spencer[Support][ErrorOr] Add support for implicit conversion...
2013-02-06 Michael J. Spencer[Support][ErrorOr] Add support for convertable types.
2013-02-05 Andrew TrickRevert "[Support][ErrorOr] Add support for convertable...
2013-02-05 Meador IngeSupport: ensure proper state in ErrorOr copy ctors...
2013-02-05 Michael J. Spencer[Support][ErrorOr] Add support for convertable types.
2013-01-23 Michael J. Spencer[Support][ErrorOr] Don't use nullptr :(
2013-01-23 Michael J. Spencer[Support][ErrorOr] Add optimized specialization of...
2013-01-22 Michael J. Spencer[Support][ErrorOr] Make old gcc happy.
2013-01-20 Michael J. Spencer[Support] Port ErrorOr<T> from lld to C++03.