1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2025-08-12 14:29:50 +00:00

Enable more warnings (and fix some).

This commit is contained in:
King_DuckZ 2015-12-08 13:57:12 +00:00
parent fe2ea40c4f
commit c82b41207e
3 changed files with 3 additions and 10 deletions

View file

@ -27,13 +27,6 @@ namespace din {
namespace {
std::string get_joint_atoms ( const StringPool<char>& parPool, bool parAbs, std::size_t parSkipRight=0 );
bool ptr_between (const char* parPtr, const char* parBeg, const char* parEnd) {
std::less<const char*> less;
std::less_equal<const char*> lesseq;
return lesseq(parBeg, parPtr) and less(parPtr, parEnd);
}
std::size_t count_grouped (boost::string_ref parIn, char parDelim) {
std::size_t retval = 0;
char prev = '\0';