Files
llvm-project/clang/test/Modules/Inputs/DependsOnModule.framework/Headers/cxx_other.h
Douglas Gregor 1fb5c3a63a Implement support for module requirements, which indicate the language
features needed for a particular module to be available. This allows
mixed-language modules, where certain headers only work under some
language variants (e.g., in C++, std.tuple might only be available in
C++11 mode).

llvm-svn: 147387
2011-12-31 04:05:44 +00:00

6 lines
55 B
C++

class CXXOnly {
public:
CXXOnly();
~CXXOnly();
};