kdev-clang-tidy: Remove boost dependency
Closed, ResolvedPublic

Description

Adding a boost dependency b/c we leverage boost::string_ref in just one function is overkill:

src/parsers/replacementparser.cpp
32:// Because we are using boost we need to provide an implementation of this
34:// boost libraries.
35:namespace boost
41:} // namespace boost
54:inline std::pair<size_t, size_t> countOfRowAndColumnToTheEndOfSubstr(boost::string_ref substring)
109:        m_sourceView = boost::string_ref(m_sourceCode);

src/parsers/replacementparser.h
28:#include <boost/utility/string_ref.hpp>
66:    boost::string_ref m_sourceView;

Let's remove that dependency altogether

kfunk created this task.Jul 10 2017, 2:53 PM
kfunk updated the task description. (Show Details)
kfunk closed this task as Resolved.EditedJul 27 2017, 10:45 AM
kfunk claimed this task.

@coliveira Got time to do this?