From 8893779edf6cd6e03552d859cb70f4dc607a6870 Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Sat, 23 Jul 2016 11:50:39 +0200 Subject: [PATCH] Suppress multiline comments (shut off gcc warnings). --- hurricane/src/hurricane/hurricane/Commons.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/hurricane/src/hurricane/hurricane/Commons.h b/hurricane/src/hurricane/hurricane/Commons.h index 192731af..2f021890 100644 --- a/hurricane/src/hurricane/hurricane/Commons.h +++ b/hurricane/src/hurricane/hurricane/Commons.h @@ -663,10 +663,6 @@ inline Hurricane::Record* getRecord ( const std::multiset* s ) } \ -//inline tstream& operator<< ( tstream& o, Data* d ) \ -//{ if (o.enabled()) static_cast(o) << d; return o; } - - # define GETRECORD_POINTER_SUPPORT(Data) \ template<> inline Hurricane::Record* getRecord( Data* data ) \ { if (!data) return NULL; return data->_getRecord(); } \ @@ -691,10 +687,6 @@ inline Hurricane::Record* getRecord ( const std::multiset* s ) { return o << getString(d); } \ \ -// inline tstream& operator<< ( tstream& o, Data& d ) \ -//{ if (o.enabled()) static_cast(o) << d; return o; } - - # define GETRECORD_REFERENCE_SUPPORT(Data) \ template<> inline Hurricane::Record* getRecord( Data& data ) \ { return data._getRecord(); } \