Kaydet (Commit) 9a113a7d authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: unreachable code, we always return in preceding code

üst b558502c
......@@ -2084,7 +2084,13 @@ FSysError DirEntry::MoveTo( const DirEntry& rNewName ) const
}
#endif
#endif
// For the WNT case we always return already above, so avoid warning
// C4702: unreachable code. Possibly also in non-WNT cases we always
// return already above, but gcc apparently doesn't mind.
#ifndef WNT
return ERRCODE_NONE;
#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