mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-01 12:06:41 +00:00
downgrade clang-format pls
This commit is contained in:
parent
3066695630
commit
80360ca5eb
1 changed files with 2 additions and 8 deletions
|
@ -127,16 +127,10 @@ namespace ESM
|
||||||
const LandData* getLandData(int flags) const;
|
const LandData* getLandData(int flags) const;
|
||||||
|
|
||||||
/// Return land data without loading first anything. Can return a 0-pointer.
|
/// Return land data without loading first anything. Can return a 0-pointer.
|
||||||
const LandData* getLandData() const
|
const LandData* getLandData() const { return mLandData.get(); }
|
||||||
{
|
|
||||||
return mLandData.get();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Return land data without loading first anything. Can return a 0-pointer.
|
/// Return land data without loading first anything. Can return a 0-pointer.
|
||||||
LandData* getLandData()
|
LandData* getLandData() { return mLandData.get(); }
|
||||||
{
|
|
||||||
return mLandData.get();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// \attention Must not be called on objects that aren't fully loaded.
|
/// \attention Must not be called on objects that aren't fully loaded.
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in a new issue