]> git.lyx.org Git - lyx.git/blobdiff - src/Length.cpp
installer: further preparation
[lyx.git] / src / Length.cpp
index bb9ec6a3b90b8096d46af014a537cdd869a9527f..10cdd2972615768ec518ef688adf2cd20ad1ac8b 100644 (file)
@@ -19,7 +19,6 @@
 #include "LyXRC.h"
 
 #include "support/docstream.h"
-#include "support/lassert.h"
 
 #include <sstream>
 #include <iomanip>
@@ -106,8 +105,7 @@ string const Length::asLatexString() const
                os << val_ / 100.0 << "\\paperheight";
                break;
        case UNIT_NONE:
-               // One should not try to ouput latex code for an empty length
-               LASSERT(false, break);
+               break;
        default:
                os << val_ << unit_name[unit_];
          break;