mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 22:56:12 -04:00
[Windows] Fix build from GetTid removal
PiperOrigin-RevId: 393795930
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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(
|
||||
|
||||
@@ -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",
|
||||
],
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user