2012-11-15 23:15:41 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 14/11/2012.
|
|
|
|
* Copyright 2012 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_VERSION_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_VERSION_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include "catch_version.h"
|
|
|
|
|
|
|
|
namespace Catch {
|
|
|
|
|
|
|
|
// These numbers are maintained by a script
|
2013-11-14 20:49:49 +01:00
|
|
|
template <typename T>
|
2013-12-09 17:01:23 +01:00
|
|
|
const T LibraryVersionInfo<T>::value( 1, 0, 16, "master" );
|
2012-11-15 23:15:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_VERSION_HPP_INCLUDED
|