From 2b26fff20c1684bc96eac25cfb24e1230f9ca3ce Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 11 Jan 2023 18:09:21 +0100 Subject: Rename Flags struct to flags --- src/ctor.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/ctor.h') diff --git a/src/ctor.h b/src/ctor.h index 549efb4..30a563c 100644 --- a/src/ctor.h +++ b/src/ctor.h @@ -58,7 +58,7 @@ struct source std::string output{}; }; -struct Flags +struct flags { std::vector cxxflags; // flags for c++ compiler std::vector cflags; // flags for c compiler @@ -87,7 +87,7 @@ struct BuildConfiguration std::string target; // Output target file for this configuration std::vector sources; // source list std::vector depends; // internal target dependencies - Flags flags; + ctor::flags flags; std::vector externals; // externals used by this configuration GeneratorCb function; }; @@ -100,7 +100,7 @@ int reg(BuildConfigurations (*cb)(const Settings&), // This type will use flags verbatim struct ExternalManual { - Flags flags; + ctor::flags flags; }; @@ -147,7 +147,7 @@ struct Configuration std::map env; // env used when last calling configure std::map tools; // tools - std::map externals; + std::map externals; }; const Configuration& configuration(); -- cgit v1.2.3