Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/giza-pp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorredpony <redpony@ca354974-eb3a-0410-8f5c-d3948404989b>2009-03-20 14:53:44 +0300
committerredpony <redpony@ca354974-eb3a-0410-8f5c-d3948404989b>2009-03-20 14:53:44 +0300
commitf230281b249108452b1fff9e7bd9c43195a45e8d (patch)
treead56a2b7266749fd60e0a6a71a9e2be74b34eb22 /GIZA++-v2/hmm.h
parent06491c9dd034b07763f511f3acff9bf975e5f14f (diff)
fixes for g++ 4.3.1 (mostly standard header compliance)
Diffstat (limited to 'GIZA++-v2/hmm.h')
-rw-r--r--GIZA++-v2/hmm.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/GIZA++-v2/hmm.h b/GIZA++-v2/hmm.h
index d4f3301..ee6009b 100644
--- a/GIZA++-v2/hmm.h
+++ b/GIZA++-v2/hmm.h
@@ -22,7 +22,7 @@ USA.
#ifndef _hmm_h
#define _hmm_h 1
-#include <assert.h>
+#include <cassert>
#include <iostream>
#include <algorithm>
@@ -38,9 +38,9 @@ using __gnu_cxx::hash_map;
#else
#include <hash_map>
#endif
-#include <fstream.h>
-#include <math.h>
-#include <time.h>
+#include <fstream>
+#include <cmath>
+#include <ctime>
#include "TTables.h"
#include "ATables.h"