Skip to content
This repository was archived by the owner on Jan 5, 2024. It is now read-only.

Commit 4419189

Browse files
committed
Remove const from return values that aren't pointer\reference\object
1 parent c933d33 commit 4419189

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Entities/AtomGroup.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,13 @@ namespace RTE {
142142
/// Gets the resolution of this AtomGroup. Basically density of the Atoms in representing a MOSRotating's silhouette.
143143
/// </summary>
144144
/// <returns>The resolution setting. 0 means the Atom config wasn't generated by a silhouette, but defined manually.</returns>
145-
const int GetResolution() const { return m_Resolution; }
145+
int GetResolution() const { return m_Resolution; }
146146

147147
/// <summary>
148148
/// Gets the depth, or how deep into the bitmap of the owning MO's graphical representation the Atoms of this AtomGroup are located.
149149
/// </summary>
150150
/// <returns>The depth, in pixels. If 0, Atoms are right on the bitmap.</returns>
151-
const int GetDepth() const { return m_Depth; }
151+
int GetDepth() const { return m_Depth; }
152152

153153
/// <summary>
154154
/// Gets the current position of this AtomGroup as a limb.

0 commit comments

Comments
 (0)