commit | 83abbd6fe404b52e81a3ac233258ab77b2fcc65f | [log] [tgz] |
---|---|---|
author | Brandon Wyman <bjwyman@gmail.com> | Mon Sep 25 16:41:39 2017 -0500 |
committer | Brandon Wyman <bjwyman@gmail.com> | Fri Sep 29 15:09:33 2017 -0500 |
tree | 2f78d5e4227ca5d9aa4e89a9a62532321d8ee16c | |
parent | 875b363cdc6dbd5f75ffb72008981581efc67f9b [diff] [blame] |
Add missing pragma once to top of header file While starting to work on code that uses NamesValues I ran into a class redefinition compile failure due to this missing line. Change-Id: Ic8fe28a47af4cdefe277f2c03e78a26ab3b83c1b Signed-off-by: Brandon Wyman <bjwyman@gmail.com>
diff --git a/names_values.hpp b/names_values.hpp index 39b5739..1e03d51 100644 --- a/names_values.hpp +++ b/names_values.hpp
@@ -1,3 +1,4 @@ +#pragma once #include <sstream> #include <string>