summaryrefslogtreecommitdiff
path: root/src/piraha/Call.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/piraha/Call.cc')
-rw-r--r--src/piraha/Call.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/piraha/Call.cc b/src/piraha/Call.cc
index 76cd647a..21ab5c54 100644
--- a/src/piraha/Call.cc
+++ b/src/piraha/Call.cc
@@ -869,10 +869,10 @@ extern "C" int cctk_PirahaParser(const char *buffer,unsigned long buffersize,int
std::string active;
smart_ptr<Matcher> m2 = new Matcher(par_file_grammar,"file",buffer,buffersize);
- std::clock_t st = std::clock();
+ //std::clock_t st = std::clock();
bool b = m2->matches();
- std::clock_t en = std::clock();
- std::cout << "PARSE TIME = " << ((en-st)/CLOCKS_PER_SEC) << std::endl;
+ //std::clock_t en = std::clock();
+ //std::cout << "PARSE TIME = " << ((en-st)/CLOCKS_PER_SEC) << std::endl;
if(b) {
int line = -1;
for(int i=0;i<m2->groupCount();i++) {