forked from boostorg/type_traits
added integral constant expression links, added tentative fix to is_function_test for older EDG based compilers
[SVN r9833]
This commit is contained in:
@ -35,7 +35,12 @@ first. </p>
|
||||
<a href="#headers">Type traits headers</a>
|
||||
<a href="#example">Example Code</a></pre>
|
||||
|
||||
<p> </p>
|
||||
<p>All of the integral expressions in this library are <a
|
||||
href="../../more/integral_constant_guidelines.htm"><em>integral
|
||||
constant expressions</em></a>, these can sometimes cause compiler
|
||||
problems in use, so there is a related set of <a
|
||||
href="../../more/integral_constant_guidelines.htm">coding
|
||||
guidelines</a> to help you write portable code using this library.</p>
|
||||
|
||||
<h2><a name="primary"></a>Primary Type Categorisation</h2>
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
#include "boost/type_traits/type_traits_test.hpp"
|
||||
|
||||
template <class T>
|
||||
#ifndef __BORLANDC__
|
||||
#if !defined(__BORLANDC__) && !defined(__sgi) && !defined(__DECCXX)
|
||||
void is_function_test(T& foo)
|
||||
#else
|
||||
void is_function_test(const T& foo)
|
||||
|
Reference in New Issue
Block a user