You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the file hello.cc of the Hello, Drake! tutorial, the line #include "drake/common/text_logging_gflags.h"
should instead be #include "drake/common/text_logging.h"
In the file BUILD.bazel the line deps = [ "//common:text_logging_gflags", "@gflags", ],
should instead be deps = [ "//common:add_text_logging_gflags", "@gflags", ],
(as of May 31 2024)
The text was updated successfully, but these errors were encountered:
In the file hello.cc of the Hello, Drake! tutorial, the line
#include "drake/common/text_logging_gflags.h"
should instead be
#include "drake/common/text_logging.h"
In the file BUILD.bazel the line
deps = [ "//common:text_logging_gflags", "@gflags", ],
should instead be
deps = [ "//common:add_text_logging_gflags", "@gflags", ],
(as of May 31 2024)
The text was updated successfully, but these errors were encountered: