added integral constant expression links, added tentative fix to is_function_test for older EDG based compilers

[SVN r9833]
This commit is contained in:
John Maddock
2001-04-18 11:28:53 +00:00
parent 9d392f1cdd
commit c63ac58736
2 changed files with 7 additions and 2 deletions

View File

@ -35,7 +35,12 @@ first. </p>
<a href="#headers">Type traits headers</a>
<a href="#example">Example Code</a></pre>
<p>&nbsp;</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>

View File

@ -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)