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

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

Merge "Fix explicit constructor warning from cpplint"

am: 07577e37

Change-Id: I0795bdb42836d84714fa6254149918a4bf49c1d3
parents 9fd008e9 07577e37
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(_, _))