diff options
author | Ben Burdette <bburdette@gmail.com> | 2020-05-13 15:56:39 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@gmail.com> | 2020-05-13 15:56:39 -0600 |
commit | ef9dd9f9bc18abc9761812e30a26008c99a26166 (patch) | |
tree | 2e5827206456f2a0f7a94c2e3bf8c9ad5ca39254 /src/libutil | |
parent | d44bac1d9232374bf823ed24f5a5ae693f89fb7d (diff) |
formatting and a few minor changes
Diffstat (limited to 'src/libutil')
-rw-r--r-- | src/libutil/types.hh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libutil/types.hh b/src/libutil/types.hh index 4d783b564..66072e8f7 100644 --- a/src/libutil/types.hh +++ b/src/libutil/types.hh @@ -15,13 +15,13 @@ using std::set; using std::vector; using std::string; -typedef list<std::string> Strings; -typedef set<std::string> StringSet; -typedef std::map<std::string, std::string> StringMap; +typedef list<string> Strings; +typedef set<string> StringSet; +typedef std::map<string, string> StringMap; /* Paths are just strings. */ -typedef std::string Path; +typedef string Path; typedef list<Path> Paths; typedef set<Path> PathSet; |