From 3fb60141ba86abd771e218cd84abca2f766d8de6 Mon Sep 17 00:00:00 2001 From: Adam Wardynski <award@.(win7-laptop)> Date: Thu, 16 Dec 2010 21:32:42 +0100 Subject: [PATCH] Tabify some lines in recent change. --- wcclparser/main.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/wcclparser/main.cpp b/wcclparser/main.cpp index cffc4bc..dc89d29 100644 --- a/wcclparser/main.cpp +++ b/wcclparser/main.cpp @@ -34,15 +34,15 @@ namespace { void std_read_loop(boost::function<bool (const std::string&)>& line_cb) { - while (std::cin.good()) { - std::cout << _prompt << std::flush; - std::string s; - getline(std::cin, s); - if (line_cb(s)) { - return; - } - } -} + while (std::cin.good()) { + std::cout << _prompt << std::flush; + std::string s; + getline(std::cin, s); + if (line_cb(s)) { + return; + } + } +] #if defined(HAVE_LIBEDIT) && !defined(_WINDOWS) //non-Windows libedit read loop @@ -137,7 +137,7 @@ void read_loop(boost::function<bool (const std::string&)>& line_cb) inline void read_loop(boost::function<bool (const std::string&)>& line_cb) { - std_read_loop(line_cb); + std_read_loop(line_cb); } #endif -- GitLab