@@ -355,8 +355,10 @@ class PythonDescriptorPoolWrapper {
355
355
// the Python DescriptorPool.
356
356
357
357
// Find a file by file name.
358
- bool FindFileByName (const std::string& filename,
359
- FileDescriptorProto* output) override {
358
+ bool FindFileByName (
359
+ const std::string& filename
360
+ ,
361
+ FileDescriptorProto* output) override {
360
362
try {
361
363
auto file = pool_.attr (" FindFileByName" )(filename);
362
364
return CopyToFileDescriptorProto (file, output);
@@ -371,8 +373,10 @@ class PythonDescriptorPoolWrapper {
371
373
}
372
374
373
375
// Find the file that declares the given fully-qualified symbol name.
374
- bool FindFileContainingSymbol (const std::string& symbol_name,
375
- FileDescriptorProto* output) override {
376
+ bool FindFileContainingSymbol (
377
+ const std::string& symbol_name
378
+ ,
379
+ FileDescriptorProto* output) override {
376
380
try {
377
381
auto file = pool_.attr (" FindFileContainingSymbol" )(symbol_name);
378
382
return CopyToFileDescriptorProto (file, output);
@@ -389,9 +393,10 @@ class PythonDescriptorPoolWrapper {
389
393
390
394
// Find the file which defines an extension extending the given message type
391
395
// with the given field number.
392
- bool FindFileContainingExtension (const std::string& containing_type,
393
- int field_number,
394
- FileDescriptorProto* output) override {
396
+ bool FindFileContainingExtension (
397
+ const std::string& containing_type
398
+ ,
399
+ int field_number, FileDescriptorProto* output) override {
395
400
try {
396
401
auto descriptor = pool_.attr (" FindMessageTypeByName" )(containing_type);
397
402
auto file =
0 commit comments