Fix issue #39: Add header guards

This commit is contained in:
Treb Connell
2015-09-24 18:08:34 -07:00
parent 8ae77b1fd5
commit 51da13607c
4 changed files with 20 additions and 0 deletions

View File

@@ -16,6 +16,9 @@
#pragma once
#ifndef GSL_STRING_VIEW_H
#define GSL_STRING_VIEW_H
#include "array_view.h"
#include <cstring>
@@ -176,3 +179,5 @@ using zstring_builder = basic_zstring_builder<char, Max>;
template <size_t Max = dynamic_range>
using wzstring_builder = basic_zstring_builder<wchar_t, Max>;
}
#endif // GSL_STRING_VIEW_H