]> git.lyx.org Git - features.git/commitdiff
Cleanup header.
authorAbdelrazak Younes <younes@lyx.org>
Mon, 25 Feb 2008 09:02:35 +0000 (09:02 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Mon, 25 Feb 2008 09:02:35 +0000 (09:02 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23221 a592a061-630c-0410-9148-cb99ea01b6c8

src/WordList.cpp

index c5fef2116764fab925f0f44fa1b312c7010fafe8..a5a8f4a78f583f82c9ecb618d12c3a2b152b91fa 100644 (file)
 
 #include <config.h>
 
-#include <boost/assert.hpp>
-
-#include <support/convert.h>
-#include <support/debug.h>
-#include <support/docstring.h>
-#include <support/weighted_btree.h>
+#include "WordList.h"
 
-#include <WordList.h>
+#include "support/convert.h"
+#include "support/debug.h"
+#include "support/docstring.h"
+#include "support/weighted_btree.h"
 
-#include <algorithm>
-#include <map>
-#include <iostream>
-#include <set>
+#include <boost/assert.hpp>
 
 namespace lyx {
 
@@ -58,8 +53,7 @@ WordList::~WordList()
 
 docstring const & WordList::word(size_t idx) const
 {
-       Impl::Words::const_iterator it
-       = d->words_.find_summed_weight(idx);
+       Impl::Words::const_iterator it = d->words_.find_summed_weight(idx);
        BOOST_ASSERT(it != d->words_.end());
        return it->first;
 }