summaryrefslogtreecommitdiffstats
path: root/src/include/stl_lite.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/stl_lite.h')
-rw-r--r--src/include/stl_lite.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/include/stl_lite.h b/src/include/stl_lite.h
deleted file mode 100644
index 5ad977d..0000000
--- a/src/include/stl_lite.h
+++ /dev/null
@@ -1,45 +0,0 @@
-#ifndef STL_LITE_H
-#define STL_LITE_H
-
-#include <ctype.h>
-#include <stdlib.h>
-#include <string.h>
-#include <algorithm>
-
-namespace std_lite{
-
- /**
- * To restrict the usage of STL functions in libpinyin,
- * all needed functions should be imported here.
- */
-
-
- using std::min;
-
-
- using std::max;
-
-
- using std::pair;
-
-
- using std::make_pair;
-
-
- using std::lower_bound;
-
-
- using std::upper_bound;
-
-
- using std::equal_range;
-
-
- using std::make_heap;
-
-
- using std::pop_heap;
-
-
-}
-#endif