FairRoot
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
demo.cpp
Go to the documentation of this file.
1 
2 #include <iostream>
3 
4 int main()
5 {
6  std::cout << "Testing\n";
7  std::cout << "Has static_assert: " <<
8 #ifdef HAS_CXX11_STATIC_ASSERT
9  "yes :)"
10 #else
11  "no"
12 #endif
13  << "\n";
14  std::cout << "Has variadic templates: " <<
15 #ifdef HAS_CXX11_VARIADIC_TEMPLATES
16  "yes :)"
17 #else
18  "no"
19 #endif
20  << "\n";
21  return 0;
22 }
23 
int main(void)