gflags/test/gflags_declare_flags.cc
Alexander Borsuk c196ce6baa Fixed macro redifinition warning for Unity builds
Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-06-09 22:07:48 +01:00

14 lines
326 B
C++
Executable file

// The macro can already be defined when using Unity builds.
#undef GFLAGS_DLL_DECLARE_FLAG
#define GFLAGS_DLL_DECLARE_FLAG
#include <iostream>
#include <gflags/gflags_declare.h>
DECLARE_string(message); // in gflags_delcare_test.cc
void print_message();
void print_message()
{
std::cout << FLAGS_message << std::endl;
}