mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
26428cdf19
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1499 a592a061-630c-0410-9148-cb99ea01b6c8
12 lines
182 B
C
12 lines
182 B
C
#include <config.h>
|
|
|
|
#include "support/LOstream.h"
|
|
#include "macro_support.h"
|
|
|
|
using std::ostream;
|
|
|
|
ostream & operator<<(ostream & o, MathedMacroFlag mmf)
|
|
{
|
|
return o << int(mmf);
|
|
}
|