Skip to content

Commit

Permalink
Fix typo in last commit (negate condition). (#1365)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelGrupp authored and wally-the-cartographer committed Aug 2, 2018
1 parent 4cd1528 commit b841ebf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cartographer/cloud/client/map_builder_stub.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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.";
}
Expand Down

0 comments on commit b841ebf

Please sign in to comment.