aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/cpp/util/BUILD
diff options
context:
space:
mode:
authorGravatar ccalvarin <ccalvarin@google.com>2018-04-06 12:42:09 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-04-06 12:44:01 -0700
commit8448f57b2a0119b1fde1e93545f01dcbb696459d (patch)
treef7bb68b1523f5daa301fd9cd6f0f44784d2f733d /src/main/cpp/util/BUILD
parente4c64ac6fe63d78da3a8cafe1df72c81df23fcb0 (diff)
Remove die() and replace it with BAZEL_DIE, part of the logging framework.
This will mean the messages will make it to the right output stream. RELNOTES: PiperOrigin-RevId: 191925662
Diffstat (limited to 'src/main/cpp/util/BUILD')
-rw-r--r--src/main/cpp/util/BUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/cpp/util/BUILD b/src/main/cpp/util/BUILD
index 66bd722dbc..be4a50f700 100644
--- a/src/main/cpp/util/BUILD
+++ b/src/main/cpp/util/BUILD
@@ -64,7 +64,7 @@ cc_library(
cc_library(
name = "errors",
- srcs = ["errors.cc"] + select({
+ srcs = select({
"//src/conditions:windows": ["errors_windows.cc"],
"//conditions:default": ["errors_posix.cc"],
}),