warnings suck

This commit is contained in:
Adam D. Ruppe 2015-09-28 09:44:19 -04:00
parent e33e2b8764
commit a81a1b2750
1 changed files with 2 additions and 1 deletions

View File

@ -1094,7 +1094,7 @@ class SimpleWindow : CapableOfHandlingNativeEvent {
Timers can only be expected to fire when the event loop is running. Timers can only be expected to fire when the event loop is running.
*/ */
version(with_timer) version(with_timer) {
class Timer { class Timer {
// FIXME: I might add overloads for ones that take a count of // FIXME: I might add overloads for ones that take a count of
// how many elapsed since last time (on Windows, it will divide // how many elapsed since last time (on Windows, it will divide
@ -1230,6 +1230,7 @@ class Timer {
static Timer[int] mapping; static Timer[int] mapping;
} else static assert(0, "timer not supported"); } else static assert(0, "timer not supported");
} }
}
// basic functions to access the clipboard // basic functions to access the clipboard
/+ /+