Skip to content

Commit eefb834

Browse files
committed
Fix compiler warning
Compiler warning on macOS: tesscallback.h:29:7: warning: 'TessClosure' has no out-of-line virtual method definitions; its vtable will be emitted in every translation unit [-Wweak-vtables] Signed-off-by: Stefan Weil <[email protected]>
1 parent e60318f commit eefb834

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ccutil/tesscallback.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ struct TessCallbackUtils_ {
2828

2929
class TessClosure {
3030
public:
31-
virtual ~TessClosure() { }
31+
virtual ~TessClosure();
3232
virtual void Run() = 0;
3333
};
3434

0 commit comments

Comments
 (0)