summaryrefslogtreecommitdiff
path: root/src/piraha/Bracket.cc
diff options
context:
space:
mode:
authoreschnett <eschnett@17b73243-c579-4c4c-a9d2-2d5706c11dac>2013-05-15 23:08:47 +0000
committereschnett <eschnett@17b73243-c579-4c4c-a9d2-2d5706c11dac>2013-05-15 23:08:47 +0000
commit8d5161bf33528459447ee1ca02006ec0252db196 (patch)
treee618608535597cfadc56255eec9e099b47bd3921 /src/piraha/Bracket.cc
parent0bad3f039d9734b99f43b36215e1dae482eae9a9 (diff)
Move all of Piraha into cctki_piraha namespace
Change namespace "piraha" to "cctki_piraha", as per Cactus naming standard. Move smart_ptr into this namespace as well. git-svn-id: http://svn.cactuscode.org/flesh/trunk@5012 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/piraha/Bracket.cc')
-rw-r--r--src/piraha/Bracket.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/piraha/Bracket.cc b/src/piraha/Bracket.cc
index d16d75da..47c3cc04 100644
--- a/src/piraha/Bracket.cc
+++ b/src/piraha/Bracket.cc
@@ -1,7 +1,7 @@
#include "Piraha.hpp"
#include <string.h>
-using namespace piraha;
+using namespace cctki_piraha;
typedef vector<smart_ptr<Range> >::iterator range_iter;
@@ -95,7 +95,7 @@ bool Bracket::match(Matcher *m) {
}
}
-void piraha::insertc(std::ostream& o,char c) {
+void cctki_piraha::insertc(std::ostream& o,char c) {
if(c == '-') {
o << "\\-";
} else if(c == '\n') {