Details
-
Bug
-
Resolution: Won't Fix
-
Major - P3
-
None
-
3.1.4
-
Fully Compatible
-
ALL
-
Platforms 15 (06/03/16)
Description
This violates our style guide. Here is example output from clang-format asking me to replace my 8 space continuation indent with a 4 space one:
mongo % python buildscripts/clang_format.py lint
|
Running across 24 cpus
|
ERROR: Found diff for /home/dannenberg/work/server6071/mongo/src/mongo/db/dbcommands.cpp
|
To fix formatting errors, run /usr/bin/clang-format --style=file -i /home/dannenberg/work/server6071/mongo/src/mongo/db/dbcommands.cpp
|
---
|
+++
|
@@ -1309,7 +1309,7 @@
|
|
|
const auto& metadata = request.getMetadata();
|
if (replCoord->getReplicationMode() == repl::ReplicationCoordinator::Mode::modeReplSet &&
|
- metadata.hasField(rpc::kReplicationMetadataFieldName)) {
|
+ metadata.hasField(rpc::kReplicationMetadataFieldName)) {
|
BSONObjBuilder replInfoBob(metadataBob.subobjStart(rpc::kReplicationMetadataFieldName));
|
replCoord->prepareReplResponseMetadata(&replInfoBob);
|
}
|
ERROR: Code Style does not match coding style
|