index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test
/
Lexer
/
has_feature_cxx0x.cpp
Age
Commit message (
Expand
)
Author
2013-05-21
Merging r181342:
Bill Wendling
2013-05-02
Only evaluate __has_feature(c_thread_local) and __has_feature(cxx_thread_loca...
Douglas Gregor
2013-04-19
C++11 support is now feature-complete.
Richard Smith
2012-04-10
Add a query macro for C++11 N3276, decltype does not require complete
Douglas Gregor
2012-04-04
Add feature check "cxx_local_type_template_args" describing support
Douglas Gregor
2012-03-09
User-defined literals are done.
Richard Smith
2012-03-03
Add a pile of tests for unrestricted unions, and advertise support for them.
Richard Smith
2012-02-25
Initializer lists are now supported.
Sebastian Redl
2012-02-23
Clang now supports lambda expressions.
Douglas Gregor
2012-02-14
Advertize support for constexpr.
Richard Smith
2012-01-16
Some improvements to the handling of C11 atomic types:
David Chisnall
2011-11-01
Add __has_feature(cxx_raw_string_literals) and
Douglas Gregor
2011-11-01
Add __has_feature(cxx_defaulted_functions) for querying "defaulted
Douglas Gregor
2011-10-14
Add c_alignas and cxx_alignas features
Peter Collingbourne
2011-10-13
Update all tests other than Driver/std.cpp to use -std=c++11 rather than
Richard Smith
2011-09-04
Add test case for defaulted copy and move structure validation.
Sebastian Redl
2011-05-21
Audit and finish the implementation of C++0x nullptr, fixing two
Douglas Gregor
2011-05-05
Implement support for C++0x alias templates.
Richard Smith
2011-04-15
Add __has_feature(cxx_range_for) check for C++11 range-based for loop.
Richard Smith
2011-04-03
clang has had full and tested support for C++0x trailing-return-type and auto...
Richard Smith
2011-03-25
we can now claim to fully support the override control feature in C++0x.
Anders Carlsson
2011-03-15
Create __has_feature(cxx_noexcept) and mark it as working.
Sebastian Redl
2011-02-20
Turn on __has_feature(cxx_auto_type). The feature is now fully implemented.
Richard Smith
2011-02-05
Add a __has_feature check for default template arguments in function
Douglas Gregor
2011-01-26
Add __has_feature(cxx_reference_qualified_functions); update tests and
Douglas Gregor
2011-01-26
Clean up the C++0x __has_feature tests. Specifically:
Douglas Gregor
2011-01-25
Downgrade the error about rvalue references to an extension warning
Douglas Gregor
2011-01-19
Eradicate any mention of C++0x concepts.
Douglas Gregor
2011-01-19
Variadic templates are fully implemented.
Douglas Gregor
2010-09-24
Allow the use of C++0x deleted functions as an extension in C++98.
Anders Carlsson
2010-08-31
Implement __has_feature(cxx_inline_namespaces)
Sebastian Redl
2010-06-29
tests: Use %clangxx when using driver for C++, in case C++ support is disabled.
Daniel Dunbar
2010-01-13
Update test function names so as not to use potential keywords.
Sean Hunt
2010-01-13
Add a bunch more feature-checking macros for C++0x features. Some of these are
Sean Hunt