mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-31 01:15:34 +00:00
downgrade clang-format pls
This commit is contained in:
parent
5d0eec17d1
commit
1f627960fd
1 changed files with 2 additions and 8 deletions
|
@ -125,16 +125,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