aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/symbols.cpp
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2013-03-18 20:47:29 +0100
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2013-03-18 20:47:29 +0100
commitefdea080a27d51b522f2414873e5c112201b71e6 (patch)
tree1f1d9a12230dd356fd7e2bde17200e8abdf1d3b3 /src/symbols.cpp
parent79112159f8f87efb5aa6fc98def89f4cd50545e8 (diff)
downloadsciteco-efdea080a27d51b522f2414873e5c112201b71e6.tar.gz
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
Diffstat (limited to 'src/symbols.cpp')
-rw-r--r--src/symbols.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/symbols.cpp b/src/symbols.cpp
index 60abf57..eaa5f80 100644
--- a/src/symbols.cpp
+++ b/src/symbols.cpp
@@ -27,14 +27,6 @@
#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.
*/