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

Commit 69682f3e authored by Orion Hodson's avatar Orion Hodson Committed by android-build-merger
Browse files

Merge "Fix explicit constructor warning from cpplint" am: 07577e37 am: f313a54f

am: eb7c39be

Change-Id: Ie3d71c7d9b2cd2569857df70330bd1a83f3f3b8c
parents ae26ba64 eb7c39be
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(_, _))