Skip to content

Commit

Permalink
Remove redundant const
Browse files Browse the repository at this point in the history
  • Loading branch information
hanzhang54 committed Jan 23, 2025
1 parent f2a6ed1 commit f6e2f38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/GraphingImpl/Mocks/Bitmap.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace MockGraphingImpl
{
class Bitmap : public Graphing::IBitmap
{
virtual const std::vector<BYTE> GetData() const
virtual std::vector<BYTE> GetData() const
{
return std::vector<BYTE>();
}
Expand Down
2 changes: 1 addition & 1 deletion src/GraphingInterfaces/IBitmap.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ namespace Graphing
{
struct IBitmap
{
virtual const std::vector<BYTE> GetData() const = 0;
virtual std::vector<BYTE> GetData() const = 0;
};
}

0 comments on commit f6e2f38

Please sign in to comment.