From bf9cc20ef09851e920b8d4705d57f48b9d34ee46 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 5 May 2011 12:40:03 +0000 Subject: [PATCH] Fixed Coverity reported issue. CID 11845: Structurally dead code (UNREACHABLE) This code cannot be reached: ".basic_string("");". --- src/osgPlugins/dae/daeWriter.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/osgPlugins/dae/daeWriter.cpp b/src/osgPlugins/dae/daeWriter.cpp index b9e3ce1ff..314a51172 100644 --- a/src/osgPlugins/dae/daeWriter.cpp +++ b/src/osgPlugins/dae/daeWriter.cpp @@ -223,7 +223,6 @@ std::string daeWriter::uniquify( const std::string &_name ) uniqueNames.insert( std::make_pair( name, 0 ) ); return name; } - return ""; } void daeWriter::createAssetTag( bool isZUpAxis )