blob: a15dd9d2a942ee77c1a307d726088c46033b0a98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// This is a truncated version of an SB API file
// used to test framework-header-fix.py to make sure the includes are correctly fixed
// up for the LLDB.framework.
// Local includes must be changed to framework level includes.
// e.g. #include "lldb/API/SBDefines.h" -> #include <LLDB/SBDefines.h>
#include "lldb/API/SBDefines.h"
#include "lldb/API/SBModule.h"
#include "lldb/lldb-types.h"
// Any include guards specified at the command line must be removed.
#ifndef SWIG
int a = 10
#endif
|