summaryrefslogtreecommitdiffstats
path: root/tester/covoar/app_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'tester/covoar/app_common.h')
-rw-r--r--tester/covoar/app_common.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/tester/covoar/app_common.h b/tester/covoar/app_common.h
index d28bfd0..ac32bbd 100644
--- a/tester/covoar/app_common.h
+++ b/tester/covoar/app_common.h
@@ -1,6 +1,11 @@
#ifndef __APP_COMMON_h
#define __APP_COMMON_h
+/*
+ * This file needs to be removed and these globals removed from the
+ * global scope. For example SymbolsToAnalyze is never destructed.
+ */
+
#include <list>
#include "DesiredSymbols.h"
@@ -22,8 +27,8 @@ extern char inputBuffer[MAX_LINE_LENGTH];
extern char inputBuffer2[MAX_LINE_LENGTH];
-bool FileIsNewer( const char *f1, const char *f2 );
-bool FileIsReadable( const char *f1 );
+bool FileIsNewer( const char *f1, const char *f2 );
+bool FileIsReadable( const char *f1 );
bool ReadUntilFound( FILE *file, const char *line );
#endif