From efdea080a27d51b522f2414873e5c112201b71e6 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Mon, 18 Mar 2013 20:47:29 +0100 Subject: declare all global inter-dependant objects in main.cpp and get rid of init_priority attribute * we cannot use weak symbols in MinGW, so we avoid init_priority for symbol initialization by compiling the empty definitions into sciteco-minimal but the real ones into sciteco (had to add new file symbols-minimal.cpp) * this fixes compilation/linking on LLVM Clang AND Dragonegg since their init_priority attribute is broken! this will likely be fixed in the near future but broken versions will be around for some time --- src/symbols.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/symbols.cpp') diff --git a/src/symbols.cpp b/src/symbols.cpp index 60abf57..eaa5f80 100644 --- a/src/symbols.cpp +++ b/src/symbols.cpp @@ -26,14 +26,6 @@ #include "sciteco.h" #include "symbols.h" -/* - * Constructors executed before the ones defined in generated code. - */ -namespace Symbols { - SymbolList scintilla INIT_PRIO(PRIO_SYMBOLS-1); - SymbolList scilexer INIT_PRIO(PRIO_SYMBOLS-1); -} - /* * Since symbol lists are presorted constant arrays we can do a simple * binary search. -- cgit v1.2.3