summaryrefslogtreecommitdiffhomepage
path: root/tempfile.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2023-01-03 18:44:40 +0100
committerRoland Reichwein <mail@reichwein.it>2023-01-03 18:44:40 +0100
commit17d2d6e657cb25260ed9cc329678ecf227191978 (patch)
treea4bcb9ef0607916b4660a982be654478bd325760 /tempfile.h
parent8299ba653b6a5bc85cf16de89df6d52055895512 (diff)
Fix export
Diffstat (limited to 'tempfile.h')
-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();
- };
-
-
+};