| Index: third_party/protobuf/src/google/protobuf/compiler/importer.h
|
| ===================================================================
|
| --- third_party/protobuf/src/google/protobuf/compiler/importer.h (revision 216642)
|
| +++ third_party/protobuf/src/google/protobuf/compiler/importer.h (working copy)
|
| @@ -280,8 +280,9 @@
|
| string virtual_path;
|
| string disk_path;
|
|
|
| - inline Mapping(const string& virtual_path, const string& disk_path)
|
| - : virtual_path(virtual_path), disk_path(disk_path) {}
|
| + inline Mapping(const string& virtual_path_param,
|
| + const string& disk_path_param)
|
| + : virtual_path(virtual_path_param), disk_path(disk_path_param) {}
|
| };
|
| vector<Mapping> mappings_;
|
|
|
|
|