Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 07577e37 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix explicit constructor warning from cpplint"

parents 736557c5 1384e7a7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ static std::unordered_map<std::string, Platform::mock_namespace_handle> namespac
// The actual gmock object
class MockPlatform : public Platform {
 public:
  MockPlatform(bool is_bridged) : is_bridged_(is_bridged) {
  explicit MockPlatform(bool is_bridged) : is_bridged_(is_bridged) {
    ON_CALL(*this, NativeBridgeIsSupported(_)).WillByDefault(Return(is_bridged_));
    ON_CALL(*this, NativeBridgeIsPathSupported(_)).WillByDefault(Return(is_bridged_));
    ON_CALL(*this, mock_get_exported_namespace(_, _))