Skip to content

Commit 7e8502a

Browse files
committed
RandomGenerator: Add missing 'override'
1 parent 3d80a22 commit 7e8502a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/engine/internal/randomgenerator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class RandomGenerator : public IRandomGenerator
1919

2020
long randint(long start, long end) const override;
2121
double randintDouble(double start, double end) const override;
22-
long randintExcept(long start, long end, long except) const;
22+
long randintExcept(long start, long end, long except) const override;
2323

2424
private:
2525
static std::shared_ptr<RandomGenerator> m_instance;

0 commit comments

Comments
 (0)