Skip to content

Commit d012b55

Browse files
committed
Gcc warning fix (removed unnecessary const)
1 parent 0d79c21 commit d012b55

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

strobe/strobe-api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ class StrobeAPI
186186

187187
int frameCount(CounterType type);
188188

189-
const char * const getDebugInformation(void);
189+
const char * getDebugInformation(void);
190190

191191
virtual int getStrobeMode(void);
192192
virtual int getPhaseSwitchInterval(void);

strobe/strobe-api_cpp_.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ inline void StrobeAPI::setPhaseSwitchInterval(int phaseSwitchInterval)
6767
switchInterval = phaseSwitchInterval;
6868
}
6969

70-
inline const char * const StrobeAPI::getDebugInformation(void)
70+
inline const char * StrobeAPI::getDebugInformation(void)
7171
{
7272
generateDebugInformation();
7373
return debugInformation;

0 commit comments

Comments
 (0)