Fix typo in last commit (negate condition). (#1365)

master
Michael Grupp 2018-08-02 20:59:23 +02:00 committed by Wally B. Feed
parent 4cd1528ffb
commit b841ebf170
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ std::string MapBuilderStub::SubmapToProto(
void MapBuilderStub::SerializeState(bool include_unfinished_submaps,
io::ProtoStreamWriterInterface* writer) {
if (!include_unfinished_submaps) {
if (include_unfinished_submaps) {
LOG(WARNING) << "Serializing unfinished submaps is currently unsupported. "
"Proceeding to write the state without them.";
}