Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
ctiller committed Jan 30, 2025
1 parent dfa8239 commit 561d929
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/core/config/config_vars.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
// Automatically generated by tools/codegen/core/gen_config_vars.py
//

#ifndef GRPC_TEST_CORE_TEST_UTIL_FUZZ_CONFIG_VARS_H
#define GRPC_TEST_CORE_TEST_UTIL_FUZZ_CONFIG_VARS_H
#ifndef GRPC_SRC_CORE_CONFIG_CONFIG_VARS_H
#define GRPC_SRC_CORE_CONFIG_CONFIG_VARS_H

#include <grpc/support/port_platform.h>
#include <stdint.h>
Expand Down Expand Up @@ -126,4 +126,4 @@ class GPR_DLL ConfigVars {

} // namespace grpc_core

#endif // GRPC_TEST_CORE_TEST_UTIL_FUZZ_CONFIG_VARS_H
#endif // GRPC_SRC_CORE_CONFIG_CONFIG_VARS_H
6 changes: 3 additions & 3 deletions tools/codegen/core/gen_config_vars.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,8 @@ def string_default_value(x, name):
],
)

print("#ifndef GRPC_TEST_CORE_TEST_UTIL_FUZZ_CONFIG_VARS_H", file=H)
print("#define GRPC_TEST_CORE_TEST_UTIL_FUZZ_CONFIG_VARS_H", file=H)
print("#ifndef GRPC_SRC_CORE_CONFIG_CONFIG_VARS_H", file=H)
print("#define GRPC_SRC_CORE_CONFIG_CONFIG_VARS_H", file=H)
print(file=H)
print("#include <grpc/support/port_platform.h>", file=H)
print(file=H)
Expand Down Expand Up @@ -351,7 +351,7 @@ def string_default_value(x, name):
print(file=H)
print("} // namespace grpc_core", file=H)
print(file=H)
print("#endif // GRPC_TEST_CORE_TEST_UTIL_FUZZ_CONFIG_VARS_H", file=H)
print("#endif // GRPC_SRC_CORE_CONFIG_CONFIG_VARS_H", file=H)

with open("src/core/config/config_vars.cc", "w") as C:
put_copyright(C)
Expand Down

0 comments on commit 561d929

Please sign in to comment.