[Windows] Fix build from GetTid removal

PiperOrigin-RevId: 393795930
This commit is contained in:
xlythe
2021-08-30 10:06:55 -07:00
committed by Copybara-Service
parent 9f8d186e42
commit ebec902cb8
5 changed files with 6 additions and 9 deletions
-3
View File
@@ -36,9 +36,6 @@ class Executor : public api::Executor {
// https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html#shutdown--
// TODO(b/184975123): replace with real implementation.
void Shutdown() override {}
// TODO(b/184975123): replace with real implementation.
int GetTid(int index) const override { return 0; }
};
} // namespace windows
@@ -47,9 +47,6 @@ class ScheduledExecutor : public api::ScheduledExecutor {
// https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html#shutdown--
// TODO(b/184975123): replace with real implementation.
void Shutdown() override {}
// TODO(b/184975123): replace with real implementation.
int GetTid(int index) const override { return 0; }
};
} // namespace windows
@@ -43,9 +43,6 @@ class SubmittableExecutor : public api::SubmittableExecutor {
// https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html#shutdown--
// TODO(b/184975123): replace with real implementation.
void Shutdown() override {}
// TODO(b/184975123): replace with real implementation.
int GetTid(int index) const override { return 0; }
};
} // namespace windows
+3
View File
@@ -72,6 +72,9 @@ portable_proto_library(
filegroup(
name = "connections_enums_proto_config",
srcs = ["connections_enums_proto_config.asciipb"],
compatible_with = [
"//buildenv/target:non_prod",
],
)
proto_library(
+3
View File
@@ -64,4 +64,7 @@ portable_proto_library(
filegroup(
name = "offline_wire_formats_proto_config",
srcs = ["offline_wire_formats_proto_config.asciipb"],
compatible_with = [
"//buildenv/target:non_prod",
],
)