From 6a251f582ec229bf0c84ba6a0c1805cb78122bad Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Sat, 22 Jun 2019 17:52:01 +0900 Subject: [PATCH] refactor: remove needless code snippet --- toml/literal.hpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/toml/literal.hpp b/toml/literal.hpp index bc4733b..783d309 100644 --- a/toml/literal.hpp +++ b/toml/literal.hpp @@ -72,11 +72,6 @@ inline ::toml::value operator"" _toml(const char* str, std::size_t len) if(auto data = ::toml::detail::parse_toml_file<::toml::value>(loc)) { - // TODO later I need to move this logic to parse_toml_file -// loc.reset(loc.begin()); // rollback to the top of the literal -// // skip needless characters for error message -// skip_line::invoke(loc); // skip the first several needless lines -// skip_ws::invoke(loc); // skip the first several needless whitespaces return data.unwrap(); } else // none of them.