X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FSocketHandle.cc;fp=Socket%2FSocketHandle.cc;h=3f8a0ce87b1baf9a66f12a2da7e4e813aca59db8;hb=032707d24b1059febe83ce56b11fd79df106c6e2;hp=1400d35d7fbbaa5ac92b3abad5db8990e7154d28;hpb=0fff17bd2bcdbb1e91e216bf6e1bebc414713548;p=senf.git diff --git a/Socket/SocketHandle.cc b/Socket/SocketHandle.cc index 1400d35..3f8a0ce 100644 --- a/Socket/SocketHandle.cc +++ b/Socket/SocketHandle.cc @@ -99,14 +99,14 @@ prefix_ bool senf::detail::StateMapOrdering::operator()(std::string a1, std::str return false; if (contains(i2,i2_end,'.')) // the longer string is a sub-'directory' of the shorter - // FIXME: shouldn't this be *i2 == '.' ? + /** \fixme shouldn't this be *i2 == '.' ? */ return true; return *i1 < *i2; } else if (i2 == i2_end) { // && i1 != i1_end if (contains(i1,i1_end,'.')) // the longer string is a sub-'directory' of the shorter - // FIXME: shouldn't this be *i1 == '.' ? + /** \fixme shouldn't this be *i1 == '.' ? */ return false; return *i1 < *i2; }