Skip to content

Commit

Permalink
Fix warning in the logging example
Browse files Browse the repository at this point in the history
  • Loading branch information
RainerKuemmerle committed Nov 12, 2023
1 parent 7023b80 commit 026fad4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion g2o/examples/logging/logging.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@

#include "g2o/stuff/logger.h"

int main(int argc, char** argv) {
int main() {
G2O_TRACE("TRACE Hello World");
G2O_DEBUG("DEBUG Hello World");
G2O_WARN("WARN Hello World");
G2O_ERROR("ERROR Hello World");
Expand Down

0 comments on commit 026fad4

Please sign in to comment.