[Lldb-commits] [lldb] r206958 - Windows fix: Need to ensure all APIs are forward decl'd with LLDB_API. If not then frontend linker errors appear due to dllexport differences. There may be some others missing, will commit as I find them.
Colin Riley
colin at codeplay.com
Wed Apr 23 02:18:31 PDT 2014
Author: domipheus
Date: Wed Apr 23 04:18:30 2014
New Revision: 206958
URL: http://llvm.org/viewvc/llvm-project?rev=206958&view=rev
Log:
Windows fix: Need to ensure all APIs are forward decl'd with LLDB_API. If not then frontend linker errors appear due to dllexport differences. There may be some others missing, will commit as I find them.
Modified:
lldb/trunk/include/lldb/API/SBDefines.h
Modified: lldb/trunk/include/lldb/API/SBDefines.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBDefines.h?rev=206958&r1=206957&r2=206958&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBDefines.h (original)
+++ lldb/trunk/include/lldb/API/SBDefines.h Wed Apr 23 04:18:30 2014
@@ -65,6 +65,7 @@ class LLDB_API SBStringList;
class LLDB_API SBSymbol;
class LLDB_API SBSymbolContext;
class LLDB_API SBSymbolContextList;
+class LLDB_API SBSection;
class LLDB_API SBTarget;
class LLDB_API SBThread;
class LLDB_API SBType;
More information about the lldb-commits
mailing list