2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-28 07:22:12 +00:00
Files
math/test/compile_test/main.cpp
John Maddock 8056009e4b Merge changes from Trunk:
Minor update to docs, with graphics regenerated.
Fix some minor inspection script errors.
Improve performance of a few of the algorithms.
Fix a few compiler warnings etc.

[SVN r60643]
2010-03-16 11:37:39 +00:00

14 lines
404 B
C++

// Copyright John Maddock 2009.
// Use, modification and distribution are subject to 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)
extern void compile_and_link_test();
int main(int argc, char* /*argv*/ [])
{
if(argc > 1000)
compile_and_link_test(); // should never actually be called.
return 0;
}