diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-10-05 15:46:01 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-10-05 14:32:40 +0000 |
commit | 39ea3871c1b3f594df846bc0b9a627c9880ecea4 (patch) | |
tree | b22c45755dad8486718eeffba90a36771e83af8f /compat/sleep.cpp | |
parent | f92e6b78505ee4bcb148cd07cdae984279b8f6ca (diff) |
use attributes only at declaration, not definition
Diffstat (limited to 'compat/sleep.cpp')
-rw-r--r-- | compat/sleep.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/sleep.cpp b/compat/sleep.cpp index 4ec61db5..5178ae2f 100644 --- a/compat/sleep.cpp +++ b/compat/sleep.cpp @@ -8,7 +8,7 @@ namespace portable { - OTR_COMPAT_EXPORT void sleep(int milliseconds) + void sleep(int milliseconds) { if (milliseconds > 0) { |