about summary refs log tree commit diff stats
path: root/util.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-01-09 17:16:04 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-01-09 17:16:04 -0500
commit09acb46a9c32257b0003eb152d32c15b43b95dfe (patch)
tree775758d54365fdccdbbfe7686b1000361940ddba /util.h
parentef1195d9dc3ae575691a6ede10eb801c71a193a1 (diff)
downloadcadence-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.h6
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
4namespace cadence { 10namespace cadence {
5 11
6 inline std::string uppercase(std::string in) 12 inline std::string uppercase(std::string in)