Skip to content

Commit

Permalink
Fix const correctness
Browse files Browse the repository at this point in the history
Co-authored-by: Tim Arterbury <timarterbury@gmail.com>
  • Loading branch information
xioTechnologies and TimArt authored Sep 26, 2023
1 parent f3027f9 commit 5d7c64d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion x-IMU3-GUI/Source/OpenGL/Common/Text.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ Text::FreeTypeLibrary::~FreeTypeLibrary()
FT_Done_FreeType(freetypeLibrary);
}

FT_Library Text::FreeTypeLibrary::get()
FT_Library Text::FreeTypeLibrary::get() const
{
return freetypeLibrary;
}
2 changes: 1 addition & 1 deletion x-IMU3-GUI/Source/OpenGL/Common/Text.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class Text

~FreeTypeLibrary();

FT_Library get();
FT_Library get() const;

private:
FT_Library freetypeLibrary = nullptr;
Expand Down

0 comments on commit 5d7c64d

Please sign in to comment.