$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Paul Johnson (gt54-boost_at_[hidden])
Date: 2005-06-29 12:30:58
Dave Steffen wrote:
> #define FOO(T) \
> inline T FOO(T i) { ... }
How about:
> #define FOO(T); \
> inline T FOO(T i) { ... }
For current gcc's, it only works if you've got an arg list, though.
Paul