Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)
[oota-llvm.git] / include / llvm / ADT / Optional.h
2015-06-23 Alexander KornienkoRevert r240137 (Fixed/added namespace ending comments...
2015-06-19 Alexander KornienkoFixed/added namespace ending comments using clang-tidy...
2015-02-15 Aaron BallmanRemoving LLVM_EXPLICIT, as MSVC 2012 was the last reaso...
2015-02-15 Benjamin KramerRemove LLVM_HAS_VARIADIC_TEMPLATES and all the faux...
2014-10-01 Jordan RoseAdd an emplace(...) method to llvm::Optional<T>.
2014-09-29 Aaron BallmanFixing the build for compilers which do not yet have...
2014-09-29 Jordan RoseAdd getValueOr to llvm::Optional<T>.
2014-09-29 Jordan RoseAdd "typedef T value_type;" to llvm::Optional<T>.
2014-03-01 Chandler Carruth[C++11] Remove the R-value reference #if usage from...
2014-01-07 Chandler CarruthRe-sort all of the includes with ./utils/sort_includes...
2013-03-27 Rafael EspindolaCleanup the simplify_type implementation.
2013-02-22 Benjamin KramerAn Optional<T> is pod-like if the inner type is.
2013-02-21 David BlaikieAdd move ctor/assignment to Optional<T>
2013-02-21 David BlaikieMake Optional<T>'s operator bool 'explicit' in C++11
2013-02-21 NAKAMURA TakumiADT/Optional.h: Appease msvc. It reapplies r175626.
2013-02-21 David BlaikieProvide a "None" value for convenience when using Optio...
2013-02-20 NAKAMURA TakumiRevert r175626, "ADT/Optional.h: Appease msvc."
2013-02-20 NAKAMURA TakumiWhitespace.
2013-02-20 NAKAMURA TakumiADT/Optional.h: Appease msvc.
2013-02-20 David BlaikieRename llvm::Optional<T>::Reset to 'reset' as per LLVM...
2013-02-20 David BlaikieAllow llvm::Optional to work with types without default...
2013-01-10 Jakub StaszakFix include guards so they exactly match file names.
2013-01-02 Argyrios KyrtzidisUse a bool instead of a bitfield in llvm/ADT/Optional.
2012-11-30 Chandler CarruthSwitch LLVM_USE_RVALUE_REFERENCES to LLVM_HAS_RVALUE_RE...
2012-11-30 Chandler CarruthSeparate out the tests for whether the compiler suports...
2012-11-30 Jordan RoseAdd a new C++11 compatibility macro, LLVM_LVALUE_FUNCTION.
2012-10-18 Jordan RoseFix case for include of Compiler.h.
2012-10-18 Jordan RoseAdd a T&& constructor to llvm::Optional.
2011-02-11 Douglas GregorPoison the relational operators ==, !=, <, <=, >=,...
2010-04-09 Ted KremenekMove 'Optional' class from Clang to LLVM/ADT.