diff options
author | Sean McBride <sean@rogue-research.com> | 2021-10-18 14:01:05 (GMT) |
---|---|---|
committer | Sean McBride <sean@rogue-research.com> | 2021-10-25 16:27:09 (GMT) |
commit | 1cf14f8c03be76f39e60ccad5049a6f2cd00aa04 (patch) | |
tree | 1cdcd647478e605952ddf4e1f1591715384e3c2c /Source/cmQtAutoGen.cxx | |
parent | 319944b3d289871c4cd21ee11aba1f5785d4b626 (diff) | |
download | CMake-1cf14f8c03be76f39e60ccad5049a6f2cd00aa04.zip CMake-1cf14f8c03be76f39e60ccad5049a6f2cd00aa04.tar.gz CMake-1cf14f8c03be76f39e60ccad5049a6f2cd00aa04.tar.bz2 |
Source: fix many -Wmissing-prototypes warnings by marking functions static
Diffstat (limited to 'Source/cmQtAutoGen.cxx')
-rw-r--r-- | Source/cmQtAutoGen.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmQtAutoGen.cxx b/Source/cmQtAutoGen.cxx index 9584e5c..0a394b5 100644 --- a/Source/cmQtAutoGen.cxx +++ b/Source/cmQtAutoGen.cxx @@ -22,10 +22,10 @@ /// @brief Merges newOpts into baseOpts /// @arg valueOpts list of options that accept a value -void MergeOptions(std::vector<std::string>& baseOpts, - std::vector<std::string> const& newOpts, - std::initializer_list<cm::string_view> valueOpts, - bool isQt5OrLater) +static void MergeOptions(std::vector<std::string>& baseOpts, + std::vector<std::string> const& newOpts, + std::initializer_list<cm::string_view> valueOpts, + bool isQt5OrLater) { if (newOpts.empty()) { return; |