style correction.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17839 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-04-17 16:35:13 +00:00
parent 9450626942
commit 0a1d3c186a

View File

@ -12,13 +12,13 @@
#ifndef MATH_MACROTABLE_H
#define MATH_MACROTABLE_H
#include <map>
#include <vector>
#include "support/docstring.h"
#include <boost/assert.hpp>
#include <map>
#include <vector>
namespace lyx {
class MathArray;
@ -46,9 +46,9 @@ public:
///
int lock() { return ++lockCount_; }
///
bool locked() const { return lockCount_!=0; }
bool locked() const { return lockCount_ != 0; }
///
void unlock() { --lockCount_; BOOST_ASSERT(lockCount_>=0); }
void unlock() { --lockCount_; BOOST_ASSERT(lockCount_ >= 0); }
private:
///