]> git.lyx.org Git - lyx.git/blobdiff - src/support/types.h
* lyxfunctional.h: delete compare_memfun and helper classes
[lyx.git] / src / support / types.h
index 53a4e19e8d2c273e59242c42d5fdfaf3d8bca232..cd46fcf62cb719d9f4a382a8987869c9d819f6de 100644 (file)
 
 #include <cstddef>
 
-namespace lyx
-{
+namespace lyx {
+
        /// a type for positions used in paragraphs
        // needs to be signed for a while to hold the special value -1 that is
-       // used there...
+       // used there
        typedef ptrdiff_t  pos_type;
 
-       /// a type for paragraph offsets 
-       typedef ptrdiff_t  paroffset_type;
+       /// a type for paragraph offsets
+       // FIXME: should be unsigned as well.
+       // however, simply changing it breaks a downward loop somewhere...
+       typedef ptrdiff_t  par_type;
 
        /// a type for the nesting depth of a paragraph
        typedef size_t     depth_type;
@@ -88,6 +90,6 @@ namespace lyx
                NEXT_WORD
        };
 
-}
+} // namespace lyx
 
 #endif // LYX_TYPES_H