Skip to content

Commit

Permalink
Change #if-ery to be more in line with cmake logic (LINUX = NOT WIN32…
Browse files Browse the repository at this point in the history
… AND NOT APPLE)
  • Loading branch information
ilya-fedin authored and john-preston committed Sep 15, 2023
1 parent 8396093 commit 1dfd1c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions storage/cache/storage_encrypted_file_tests.cpp
Expand Up @@ -21,9 +21,9 @@ For license and copyright information please follow this link:
#include <thread>
#ifdef Q_OS_MAC
#include <mach-o/dyld.h>
#elif defined Q_OS_UNIX // Q_OS_MAC
#elif !defined Q_OS_WIN // Q_OS_MAC
#include <unistd.h>
#endif // Q_OS_MAC || Q_OS_UNIX
#endif // Q_OS_MAC || !Q_OS_WIN

extern int (*TestForkedMethod)();

Expand Down

0 comments on commit 1dfd1c1

Please sign in to comment.