ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/dclient/include/adt/foreach.h
Revision: 1.2
Committed: Mon Oct 18 14:11:42 2010 UTC (13 years, 8 months ago) by sf-pippijn
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -2 lines
Log Message:
check and log but do not die when ncurses stuff fails

File Contents

# Content
1 #if GCC_VERSION(4,6)
2 # define foreach(a, b) for (a : b)
3 #else
4 # include <boost/foreach.hpp>
5 # define foreach BOOST_FOREACH
6 #endif