-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathstring-view-main.t.hpp
59 lines (41 loc) · 1.45 KB
/
string-view-main.t.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright 2017-2020 by Martin Moene
//
// https://github.com/martinmoene/string-view-lite
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#pragma once
#ifndef TEST_SV_LITE_H_INCLUDED
#define TEST_SV_LITE_H_INCLUDED
#include nssv_STRING_VIEW_HEADER
// Compiler warning suppression for usage of lest:
#ifdef __clang__
# pragma clang diagnostic ignored "-Wstring-conversion"
# pragma clang diagnostic ignored "-Wunused-parameter"
# pragma clang diagnostic ignored "-Wunused-template"
# pragma clang diagnostic ignored "-Wunused-function"
# pragma clang diagnostic ignored "-Wunused-member-function"
#elif defined __GNUC__
# pragma GCC diagnostic ignored "-Wunused-parameter"
# pragma GCC diagnostic ignored "-Wunused-function"
#endif
// Limit C++ Core Guidelines checking to GSL Lite:
#if nssv_COMPILER_MSVC_VER >= 1910
# include <CppCoreCheck/Warnings.h>
# pragma warning(disable: ALL_CPPCORECHECK_WARNINGS)
#endif
#if nssv_USES_STD_STRING_VIEW
# define nssv_nullptr nullptr
#endif
#define nssv_STD_SV_OR( expr ) ( nssv_USES_STD_STRING_VIEW || (expr) )
#include <iostream>
namespace lest {
#if ! nssv_CONFIG_NO_STREAM_INSERTION
using ::nonstd::operator<<;
#endif
} // namespace lest
#include "lest_cpp03.hpp"
extern lest::tests & specification();
#define CASE( name ) lest_CASE( specification(), name )
#endif // TEST_SV_LITE_H_INCLUDED
// end of file