# HG changeset patch # User David Demelier # Date 1568892872 0 # Node ID 4a59972e5eb83fd24fa1a3a7e0f2c607f945d98b # Parent 8f01ad385fe6cbb2ff596b5bccc53bd898235b60 options: remove useless main diff -r 8f01ad385fe6 -r 4a59972e5eb8 cpp/options/test/main.cpp --- a/cpp/options/test/main.cpp Thu Sep 19 11:34:16 2019 +0000 +++ b/cpp/options/test/main.cpp Thu Sep 19 11:34:32 2019 +0000 @@ -164,25 +164,3 @@ } BOOST_AUTO_TEST_SUITE_END() - -#if 0 - -#include - -#include "options.hpp" - -int main() -{ - { - const auto [ args, options ] = options::parse({"-v"}, "v"); - } - { - const auto [ args, options ] = options::parse({"-c", "config"}, "c:"); - for (const auto& a : args) - std::cout << "a => " << a << std::endl; - for (const auto& [k,v] : options) - std::cout << k << " = " << v << std::endl; - } - -} -#endif