summaryrefslogtreecommitdiff
path: root/src/piraha/Piraha.hpp
diff options
context:
space:
mode:
authorsbrandt <sbrandt@17b73243-c579-4c4c-a9d2-2d5706c11dac>2013-02-26 22:08:02 +0000
committersbrandt <sbrandt@17b73243-c579-4c4c-a9d2-2d5706c11dac>2013-02-26 22:08:02 +0000
commit2808b605fea61bbd9ff50a46020061579fb19f41 (patch)
treee86334398ead087bb21c3a76ea7f9bff3a50f779 /src/piraha/Piraha.hpp
parent2cf1b70f96d4a02c3e52eedfee4f3256a906ec2e (diff)
(1) Fix compilation issues on Pandora
(2) Disallow setting multiple parameters on one line (3) Allow sign in floating point format to be optional (4) Use package piraha (5) change PirahaParser to cctk_PirahaParser (6) remove size.py git-svn-id: http://svn.cactuscode.org/flesh/trunk@4966 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/piraha/Piraha.hpp')
-rw-r--r--src/piraha/Piraha.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/piraha/Piraha.hpp b/src/piraha/Piraha.hpp
index 3ff07d6d..25892fbc 100644
--- a/src/piraha/Piraha.hpp
+++ b/src/piraha/Piraha.hpp
@@ -7,6 +7,8 @@
#include <iostream>
#include <smart_ptr.hpp>
+namespace piraha {
+
const int max_int = 10000;
using std::map;
@@ -291,4 +293,6 @@ extern smart_ptr<Grammar> pegGrammar;
extern smart_ptr<Pattern> compile(smart_ptr<Group> g,bool ignCase,smart_ptr<Grammar> gram);
extern void compileFile(smart_ptr<Grammar> g,const char *buffer,signed long buffersize=-1);
+}
+
#endif