mirror of
https://github.com/boostorg/math.git
synced 2026-01-28 07:22:12 +00:00
MPFR Support. New distributions: laplace, logistic and hypergeometric. Added PCH support to the Jamfiles for faster build times. Added C# usage example. Updated and regenerated docs. Also fixes #2799 and updates the tests to catch this failure in future. [SVN r51455]
14 lines
372 B
C++
14 lines
372 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 check();
|
|
|
|
int main(int argc, char* /*argv*/ [])
|
|
{
|
|
if(argc > 1000)
|
|
check(); // should never actually be called.
|
|
return 0;
|
|
}
|