Skip to content

Commit f62c14a

Browse files
authored
no warnings (#240)
1 parent 391846d commit f62c14a

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

WORKSPACE.bazel

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ http_archive(
7575

7676
http_archive(
7777
name = "ecsact_parse",
78-
sha256 = "280deb663ac2da22e8d41de78601a575a929fc6ce31122ac8f1403a3a998d14d",
79-
strip_prefix = "ecsact_parse-67865823dbc3b74237441ff04c1860b037558780",
80-
url = "https://github.com/ecsact-dev/ecsact_parse/archive/67865823dbc3b74237441ff04c1860b037558780.zip",
78+
sha256 = "87f634aa6d85b503e01c5f2ce98986c01c3f990b09aa86556c8928247323944b",
79+
strip_prefix = "ecsact_parse-ef595017ec265aff1ef2d6020e673d3c80495f31",
80+
url = "https://github.com/ecsact-dev/ecsact_parse/archive/ef595017ec265aff1ef2d6020e673d3c80495f31.zip",
8181
)
8282

8383
http_archive(
@@ -89,9 +89,9 @@ http_archive(
8989

9090
http_archive(
9191
name = "ecsact_interpret",
92-
sha256 = "273d2dd2d63a9620ce28e27a9e9e2be6987a7e1fdf2171ee4d0dd230ad578a76",
93-
strip_prefix = "ecsact_interpret-1471bc70acebb3c4339e8fb8dfbc5913257816e4",
94-
url = "https://github.com/ecsact-dev/ecsact_interpret/archive/1471bc70acebb3c4339e8fb8dfbc5913257816e4.zip",
92+
sha256 = "1b5f42e76147693329be97142a623b7c4b35444882deaa5ae9e657ac3998b5ce",
93+
strip_prefix = "ecsact_interpret-de736126a228c4962161fc4db4a762e5dcf191c4",
94+
url = "https://github.com/ecsact-dev/ecsact_interpret/archive/de736126a228c4962161fc4db4a762e5dcf191c4.zip",
9595
)
9696

9797
http_archive(

bazel/copts.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
copts = select({
22
"@bazel_tools//tools/cpp:msvc": ["/std:c++20", "/Zc:preprocessor", "/permissive-"],
3-
"//conditions:default": ["-std=c++20"],
3+
"//conditions:default": ["-std=c++20", "-Werror"],
44
})

cli/commands/config.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ int ecsact::cli::detail::config_command(int argc, char* argv[]) {
105105
"builtin_plugins",
106106
[&] {
107107
if(fs::exists(plugin_dir)) {
108-
auto& builtin_plugins_str = output["builtin_plugins"];
109108
std::vector<std::string> builtin_plugins;
110109
for(auto& entry : fs::directory_iterator(plugin_dir)) {
111110
auto filename =

0 commit comments

Comments
 (0)