Unverified Commit dadbd47d authored by Emmanuel Garcia's avatar Emmanuel Garcia Committed by GitHub

Disable clang format in the plugin registrants (#76662)

parent 65e94f51
...@@ -990,6 +990,8 @@ const String _objcPluginRegistryHeaderTemplate = ''' ...@@ -990,6 +990,8 @@ const String _objcPluginRegistryHeaderTemplate = '''
// Generated file. Do not edit. // Generated file. Do not edit.
// //
// clang-format off
#ifndef GeneratedPluginRegistrant_h #ifndef GeneratedPluginRegistrant_h
#define GeneratedPluginRegistrant_h #define GeneratedPluginRegistrant_h
...@@ -1010,6 +1012,8 @@ const String _objcPluginRegistryImplementationTemplate = ''' ...@@ -1010,6 +1012,8 @@ const String _objcPluginRegistryImplementationTemplate = '''
// Generated file. Do not edit. // Generated file. Do not edit.
// //
// clang-format off
#import "GeneratedPluginRegistrant.h" #import "GeneratedPluginRegistrant.h"
{{#plugins}} {{#plugins}}
...@@ -1036,6 +1040,8 @@ const String _swiftPluginRegistryTemplate = ''' ...@@ -1036,6 +1040,8 @@ const String _swiftPluginRegistryTemplate = '''
// Generated file. Do not edit. // Generated file. Do not edit.
// //
// clang-format off
import {{framework}} import {{framework}}
import Foundation import Foundation
...@@ -1146,6 +1152,8 @@ const String _cppPluginRegistryHeaderTemplate = ''' ...@@ -1146,6 +1152,8 @@ const String _cppPluginRegistryHeaderTemplate = '''
// Generated file. Do not edit. // Generated file. Do not edit.
// //
// clang-format off
#ifndef GENERATED_PLUGIN_REGISTRANT_ #ifndef GENERATED_PLUGIN_REGISTRANT_
#define GENERATED_PLUGIN_REGISTRANT_ #define GENERATED_PLUGIN_REGISTRANT_
...@@ -1162,6 +1170,8 @@ const String _cppPluginRegistryImplementationTemplate = ''' ...@@ -1162,6 +1170,8 @@ const String _cppPluginRegistryImplementationTemplate = '''
// Generated file. Do not edit. // Generated file. Do not edit.
// //
// clang-format off
#include "generated_plugin_registrant.h" #include "generated_plugin_registrant.h"
{{#plugins}} {{#plugins}}
...@@ -1181,6 +1191,8 @@ const String _linuxPluginRegistryHeaderTemplate = ''' ...@@ -1181,6 +1191,8 @@ const String _linuxPluginRegistryHeaderTemplate = '''
// Generated file. Do not edit. // Generated file. Do not edit.
// //
// clang-format off
#ifndef GENERATED_PLUGIN_REGISTRANT_ #ifndef GENERATED_PLUGIN_REGISTRANT_
#define GENERATED_PLUGIN_REGISTRANT_ #define GENERATED_PLUGIN_REGISTRANT_
...@@ -1197,6 +1209,8 @@ const String _linuxPluginRegistryImplementationTemplate = ''' ...@@ -1197,6 +1209,8 @@ const String _linuxPluginRegistryImplementationTemplate = '''
// Generated file. Do not edit. // Generated file. Do not edit.
// //
// clang-format off
#include "generated_plugin_registrant.h" #include "generated_plugin_registrant.h"
{{#plugins}} {{#plugins}}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment