2016-07-20 16:17:47 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (c) 2015 Microsoft Corporation. All rights reserved.
|
|
|
|
//
|
|
|
|
// This code is licensed under the MIT License (MIT).
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
// THE SOFTWARE.
|
|
|
|
//
|
2015-08-20 21:09:14 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2015-09-24 21:08:34 -04:00
|
|
|
#ifndef GSL_GSL_H
|
|
|
|
#define GSL_GSL_H
|
|
|
|
|
2022-01-31 16:06:42 -05:00
|
|
|
#include "algorithm" // copy
|
|
|
|
#include "assert" // Ensures/Expects
|
|
|
|
#include "byte" // byte
|
|
|
|
#include "pointers" // owner, not_null
|
|
|
|
#include "span" // span
|
|
|
|
#include "string_span" // zstring, string_span, zstring_builder...
|
|
|
|
#include "util" // finally()/narrow_cast()...
|
2015-10-01 00:54:08 -04:00
|
|
|
|
2020-10-28 18:38:32 -04:00
|
|
|
#ifdef __cpp_exceptions
|
2022-01-31 16:06:42 -05:00
|
|
|
#include "narrow" // narrow()
|
2020-10-28 18:38:32 -04:00
|
|
|
#endif
|
|
|
|
|
2015-09-24 21:08:34 -04:00
|
|
|
#endif // GSL_GSL_H
|