From 1a4fb4458cbf69628a541c3957b53e01ea661cd4 Mon Sep 17 00:00:00 2001 From: MITSUNARI Shigeo Date: Tue, 6 Sep 2016 17:33:38 +0900 Subject: remove old code --- sample/bls_tool.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/sample/bls_tool.cpp b/sample/bls_tool.cpp index 158f7b2..dfa3a07 100644 --- a/sample/bls_tool.cpp +++ b/sample/bls_tool.cpp @@ -25,7 +25,6 @@ void strip(std::string& str) void readMessage(std::string& str) { str.clear(); -#if 1 std::string line; std::getline(std::cin, line); // remove first blank line while (std::getline(std::cin, line)) { @@ -34,14 +33,6 @@ void readMessage(std::string& str) } strip(str); if (!str.empty()) return; -#else - // retry once if blank line exists - for (size_t i = 0; i < 2; i++) { - std::getline(std::cin, str); - strip(str); - if (!str.empty()) return; - } -#endif throw std::runtime_error("readMessage:message is empty"); } -- cgit v1.2.3