~barry/ubuntu/precise/boost1.46/debian-merge

« back to all changes in this revision

Viewing changes to libs/math/src/tr1/cbrtl.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2011-03-13 00:37:35 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110313003735-r7j6jdk0hkywfzuw
Tags: 1.46.1-1
* New upstream.

* control: Add libboost-random1.46-dev to depends of -all-dev and
  suggests of -dev.  Closes: #615849.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
#include <boost/math/special_functions/cbrt.hpp>
12
12
#include "c_policy.hpp"
13
13
 
14
 
extern "C" long double BOOST_MATH_TR1_DECL cbrtl BOOST_PREVENT_MACRO_SUBSTITUTION(long double x) BOOST_MATH_C99_THROW_SPEC
 
14
extern "C" long double BOOST_MATH_TR1_DECL boost_cbrtl BOOST_PREVENT_MACRO_SUBSTITUTION(long double x) BOOST_MATH_C99_THROW_SPEC
15
15
{
16
16
   return c_policies::cbrt BOOST_PREVENT_MACRO_SUBSTITUTION(x);
17
17
}