summaryrefslogtreecommitdiff
path: root/src/Fl_System_Driver.H
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2022-03-20 08:09:34 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2022-03-20 08:09:34 +0100
commitf5628aa66de0173f4fc145586a8c83e66e32f160 (patch)
tree9378c61789b0ac3f85cd9ff5854540b02321ebce /src/Fl_System_Driver.H
parent733ffed6308a63c5f7975bf2e5807b29faf2c77a (diff)
Fix issue #413: Commit 29d9e31 creates memory handling problem under macOS.
Diffstat (limited to 'src/Fl_System_Driver.H')
-rw-r--r--src/Fl_System_Driver.H4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Fl_System_Driver.H b/src/Fl_System_Driver.H
index e010212fe..779167b69 100644
--- a/src/Fl_System_Driver.H
+++ b/src/Fl_System_Driver.H
@@ -2,7 +2,7 @@
// A base class for platform specific system calls
// for the Fast Light Tool Kit (FLTK).
//
-// Copyright 2010-2021 by Bill Spitzak and others.
+// Copyright 2010-2022 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
@@ -241,7 +241,7 @@ public:
virtual Fl_Sys_Menu_Bar_Driver *sys_menu_bar_driver() { return NULL; }
virtual void lock_ring() {}
virtual void unlock_ring() {}
- virtual double wait(double) { return 0.0; } // must override
+ virtual double wait(double); // must override
virtual int ready() { return 0; } // must override
};