summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--tempfile.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/tempfile.h b/tempfile.h
index 46c7123..989e6d6 100644
--- a/tempfile.h
+++ b/tempfile.h
@@ -4,7 +4,7 @@
#define EXPORT __attribute__((visibility("default")))
-EXPORT class Tempfile
+class EXPORT Tempfile
{
std::filesystem::path m_path;
@@ -14,6 +14,4 @@ EXPORT class Tempfile
// extension: e.g. ".zip"
Tempfile(const std::filesystem::path& extension = std::filesystem::path{});
~Tempfile();
- };
-
-
+};