]> git.lyx.org Git - lyx.git/blobdiff - src/BiblioInfo.cpp
this we don't need anymore
[lyx.git] / src / BiblioInfo.cpp
index 7d2f268473d47de8c9f22c589356ec9af327f66c..198a4a11ff543232b2cffedb93899e05a5fafb9d 100644 (file)
@@ -24,6 +24,7 @@
 #include "insets/InsetBibtex.h"
 #include "insets/InsetInclude.h"
 
+#include "support/assert.h"
 #include "support/docstream.h"
 #include "support/gettext.h"
 #include "support/lstrings.h"
@@ -423,7 +424,7 @@ void BiblioInfo::fillWithBibKeys(Buffer const * const buf)
        /// if this is a child document and the parent is already loaded
        /// use the parent's list instead  [ale990412]
        Buffer const * const tmp = buf->masterBuffer();
-       BOOST_ASSERT(tmp);
+       LASSERT(tmp, /**/);
        if (tmp != buf) {
                this->fillWithBibKeys(tmp);
                return;