]> git.lyx.org Git - lyx.git/blobdiff - src/support/RandomAccessList.h
MacOSX compile fix.
[lyx.git] / src / support / RandomAccessList.h
index 2e419bd7001491cdf87cf52fdd3069dc1a6d3200..c26d64668bdb0619111a862fe473de3e184e2075 100644 (file)
@@ -31,7 +31,7 @@ keeps the std::list::iterator interface. A typical use would be:
 
        typedef RandomAccessList<some_class> MyContainer;
 
-Then you can use MyContainer as if it was a standard 
+Then you can use MyContainer as if it was a standard
 std::vector<some_class> for operator[] access and as if it was a
 standard std::list for iterator access. The main difference with
 std::vector is that insertion of elements is much less costly. Compared