mirror of
https://github.com/boostorg/functional.git
synced 2025-08-02 14:04:27 +02:00
Intel C++ fixes: no void return types supported.
[SVN r11199]
This commit is contained in:
@@ -20,6 +20,9 @@
|
|||||||
// $Id$
|
// $Id$
|
||||||
// ------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.2 2001/09/22 11:52:24 johnmaddock
|
||||||
|
// Intel C++ fixes: no void return types supported.
|
||||||
|
//
|
||||||
// Revision 1.1.1.1 2000/07/07 16:04:18 beman
|
// Revision 1.1.1.1 2000/07/07 16:04:18 beman
|
||||||
// 1.16.1 initial CVS checkin
|
// 1.16.1 initial CVS checkin
|
||||||
//
|
//
|
||||||
@@ -128,7 +131,7 @@ int main()
|
|||||||
|
|
||||||
std::ostream &os = std::cout;
|
std::ostream &os = std::cout;
|
||||||
|
|
||||||
#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !defined(__ICL)
|
||||||
// unary_traits, unary_negate
|
// unary_traits, unary_negate
|
||||||
std::transform(v2.begin(), v2.end(),
|
std::transform(v2.begin(), v2.end(),
|
||||||
std::ostream_iterator<bool>(std::cout, " "),
|
std::ostream_iterator<bool>(std::cout, " "),
|
||||||
|
Reference in New Issue
Block a user