From 2c6941895a33811bc923912eb1e6bd451b5477d5 Mon Sep 17 00:00:00 2001 From: Wolfgang Thaller Date: Fri, 19 Sep 2014 19:13:46 +0200 Subject: [PATCH] fix incompatibility with gcc 4.9 (for the record: gcc was right) --- ASFilter/asfilter.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ASFilter/asfilter.cc b/ASFilter/asfilter.cc index 749ebc293c..d7f954ccee 100644 --- a/ASFilter/asfilter.cc +++ b/ASFilter/asfilter.cc @@ -96,7 +96,7 @@ int main(int argc, char *argv[]) p != end; ++p) { - out << "\tdc.w 0x" << *p << std::endl; + out << "\tdc.w 0x" << p->str() << std::endl; } }