diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-01-09 17:16:04 -0500 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-01-09 17:16:04 -0500 |
commit | 09acb46a9c32257b0003eb152d32c15b43b95dfe (patch) | |
tree | 775758d54365fdccdbbfe7686b1000361940ddba /util.h | |
parent | ef1195d9dc3ae575691a6ede10eb801c71a193a1 (diff) | |
download | cadence-09acb46a9c32257b0003eb152d32c15b43b95dfe.tar.gz cadence-09acb46a9c32257b0003eb152d32c15b43b95dfe.tar.bz2 cadence-09acb46a9c32257b0003eb152d32c15b43b95dfe.zip |
Added necessary includes for util.h
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/util.h b/util.h index 256456f..8a476da 100644 --- a/util.h +++ b/util.h | |||
@@ -1,6 +1,12 @@ | |||
1 | #ifndef UTIL_H_CED7A66D | 1 | #ifndef UTIL_H_CED7A66D |
2 | #define UTIL_H_CED7A66D | 2 | #define UTIL_H_CED7A66D |
3 | 3 | ||
4 | #include <algorithm> | ||
5 | #include <string> | ||
6 | #include <iterator> | ||
7 | #include <cctype> | ||
8 | #include <sstream> | ||
9 | |||
4 | namespace cadence { | 10 | namespace cadence { |
5 | 11 | ||
6 | inline std::string uppercase(std::string in) | 12 | inline std::string uppercase(std::string in) |