]> git.lyx.org Git - lyx.git/blobdiff - src/ModuleList.cpp
Fix another use of unqualified std::move
[lyx.git] / src / ModuleList.cpp
index 356bbe9379440a7e85ded86908ec9858df6ec1da..d8fd34cc729437bab7c7ef45eb0f6b5affbe27c0 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Richard Heck
+ * \author Richard Kimberly Heck
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -259,7 +259,7 @@ LyXModule const * ModuleList::operator[](string const & str) const
                        LyXModule const & mod = *it;
                        return &mod;
                }
-       return 0;
+       return nullptr;
 }
 
 
@@ -271,7 +271,7 @@ LyXModule * ModuleList::operator[](string const & str)
                        LyXModule & mod = *it;
                        return &mod;
                }
-       return 0;
+       return nullptr;
 }
 
 } // namespace lyx