From 500b8e190df316eca96b2b9fc787bf1f29974600 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Tue, 10 Aug 2004 17:04:14 +0000 Subject: [PATCH] support gcc 2.96 workaround (typedef arg arg_;) [SVN r24388] --- include/boost/python/args.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/boost/python/args.hpp b/include/boost/python/args.hpp index 1c9900cb..8f8791d7 100644 --- a/include/boost/python/args.hpp +++ b/include/boost/python/args.hpp @@ -32,6 +32,7 @@ namespace boost { namespace python { typedef detail::keywords<1> arg; +typedef arg arg_; // gcc 2.96 workaround namespace detail {