Kaydet (Commit) 94609035 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Added the unreachable code back in, even for GCC 4.0, so Mac OS X would not fail.

üst e0ffea72
......@@ -2286,6 +2286,12 @@ namespace cppcanvas
rState ) );
}
}
#if defined __GNUC__
#if __GNUC__ == 4
// Unreachable; to avoid bogus warning:
return ActionSharedPtr();
#endif
#endif
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment