]> git.lyx.org Git - lyx.git/blobdiff - src/support/userinfo.cpp
add onoff support for "inset-modify changetype xxx" in include inset
[lyx.git] / src / support / userinfo.cpp
index ca4e0e948077be62c8dba20631e24ac14dc682b1..5f2cfcab65599d954b565d8df803d0ab4c93a2ef 100644 (file)
@@ -14,7 +14,7 @@
 #include "support/environment.h"
 #include "support/docstring.h"
 
-#include <boost/assert.hpp>
+#include "support/lassert.h"
 
 #if defined (_WIN32)
 # include "support/gettext.h"
@@ -46,7 +46,7 @@ docstring const user_name()
        return from_local8bit(name);
 #else
        struct passwd * pw = getpwuid(geteuid());
-       BOOST_ASSERT(pw);
+       LASSERT(pw, /**/);
 
        string name = pw->pw_gecos;
        if (name.empty())