From 7fa8c7ec206680f923a6725a179792a43e999d3a Mon Sep 17 00:00:00 2001 From: Joshua Warner Date: Fri, 14 Mar 2014 09:06:01 -0600 Subject: [PATCH] remove unused constants (fixes #198) --- src/compile.cpp | 3 --- src/system/posix.cpp | 1 - 2 files changed, 4 deletions(-) diff --git a/src/compile.cpp b/src/compile.cpp index 39f8f4c357..6271b94d2a 100644 --- a/src/compile.cpp +++ b/src/compile.cpp @@ -56,9 +56,6 @@ const bool DebugNatives = false; const bool DebugCallTable = false; const bool DebugMethodTree = false; const bool DebugFrameMaps = false; -#ifndef NDEBUG -const bool DebugIntrinsics = false; -#endif const bool CheckArrayBounds = true; diff --git a/src/system/posix.cpp b/src/system/posix.cpp index ffcff62187..0d232f3fda 100644 --- a/src/system/posix.cpp +++ b/src/system/posix.cpp @@ -78,7 +78,6 @@ class MutexResource { pthread_mutex_t* m; }; -const int InvalidSignal = -1; const int VisitSignal = SIGUSR1; const unsigned VisitSignalIndex = 0; const int InterruptSignal = SIGUSR2;