commit | 51da13607c655e8b57e82d1243b9283421182c27 | [log] [tgz] |
---|---|---|
author | Treb Connell <trebconnell@gmail.com> | Thu Sep 24 18:08:34 2015 -0700 |
committer | Treb Connell <trebconnell@gmail.com> | Thu Sep 24 18:08:34 2015 -0700 |
tree | 64e2455e2f9f8bd90c642848e299e77db4588201 | |
parent | 8ae77b1fd5eca68f384a69b01695c086a4abb5d0 [diff] [blame] |
Fix issue #39: Add header guards
diff --git a/include/gsl.h b/include/gsl.h index 1357d76..09a46c7 100644 --- a/include/gsl.h +++ b/include/gsl.h
@@ -16,6 +16,9 @@ #pragma once +#ifndef GSL_GSL_H +#define GSL_GSL_H + #include "array_view.h" // array_view, strided_array_view... #include "string_view.h" // zstring, string_view, zstring_builder... #include <memory> @@ -287,3 +290,5 @@ template<class T> using maybe_null = maybe_null_ret<T>; } // namespace Guide + +#endif // GSL_GSL_H