diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-03-06 15:01:39 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-03-06 20:50:02 -0500 |
commit | 0ca7ab6ea027d58e5bfb7be14508f4cf45d85876 (patch) | |
tree | 4488f5bf3fd0064a18e0c7a56f4358f89545c5aa /include/formula | |
parent | e253d46af3b47afd0006084bec89b02473ee457a (diff) |
Make these non inline.
Change-Id: Ib139850380b039382565e3de3666eebb5750f32d
Diffstat (limited to 'include/formula')
-rw-r--r-- | include/formula/token.hxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/formula/token.hxx b/include/formula/token.hxx index baf050a82d33..f65220b38144 100644 --- a/include/formula/token.hxx +++ b/include/formula/token.hxx @@ -94,10 +94,8 @@ protected: mutable oslInterlockedCount mnRefCnt; // reference count public: - FormulaToken( StackVar eTypeP,OpCode e = ocPush ) : - eOp(e), eType( eTypeP ), mnRefCnt(0) {} - FormulaToken( const FormulaToken& r ) : IFormulaToken(), - eOp(r.eOp), eType( r.eType ), mnRefCnt(0) {} + FormulaToken( StackVar eTypeP,OpCode e = ocPush ); + FormulaToken( const FormulaToken& r ); virtual ~FormulaToken(); |