2015-08-20 21:09:14 -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.
|
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <exception>
|
2015-09-21 17:51:46 -04:00
|
|
|
#include <stdexcept>
|
2015-08-20 21:09:14 -04:00
|
|
|
|
|
|
|
namespace Guide
|
|
|
|
{
|
|
|
|
|
|
|
|
//
|
|
|
|
// Having "fail fast" result in an exception makes unit testing
|
|
|
|
// the GSL classes that rely upon it much simpler.
|
|
|
|
//
|
|
|
|
#if defined(SAFER_CPP_TESTING)
|
|
|
|
|
2015-09-14 17:26:17 -04:00
|
|
|
struct fail_fast : public std::runtime_error
|
2015-08-31 02:30:15 -04:00
|
|
|
{
|
2015-09-14 17:26:17 -04:00
|
|
|
fail_fast() : std::runtime_error("") {}
|
|
|
|
explicit fail_fast(char const* const message) : std::runtime_error(message) {}
|
2015-08-31 02:30:15 -04:00
|
|
|
};
|
|
|
|
|
2015-08-20 21:09:14 -04:00
|
|
|
inline void fail_fast_assert(bool cond) { if (!cond) throw fail_fast(); }
|
2015-08-31 02:30:15 -04:00
|
|
|
inline void fail_fast_assert(bool cond, const char* const message) { if (!cond) throw fail_fast(message); }
|
2015-08-20 21:09:14 -04:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
inline void fail_fast_assert(bool cond) { if (!cond) std::terminate(); }
|
2015-09-19 02:52:30 -04:00
|
|
|
inline void fail_fast_assert(bool cond, const char* const) { if (!cond) std::terminate(); }
|
2015-08-20 21:09:14 -04:00
|
|
|
|
|
|
|
#endif // SAFER_CPP_TESTING
|
|
|
|
|
2015-09-14 17:26:17 -04:00
|
|
|
}
|