• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef KNOWN_ISSUES_H_
2 #define KNOWN_ISSUES_H_
3 
4 // header-abi-dumper is unable to output the following types correctly.
5 
6 // template<int I> struct NonTypeTemplate;
7 extern NonTypeTemplate<1> non_type_template;
8 
9 // namespace namespace1{
10 // template<typename T> class UsingTemplate;
11 // }
12 using namespace1::UsingTemplate;
13 extern UsingTemplate<float> *using_template;
14 
15 // #define STDCALL __stdcall
16 STDCALL return_type function_with_calling_convention();
17 
18 // class ClassInNameSpace;
19 template <typename T> class ClassTemplate;
20 extern ClassTemplate<::ClassInNameSpace> template_arg_in_namespace;
21 
22 #endif  // KNOWN_ISSUES_H_
23