Skip to content

Commit

Permalink
Include Foundation framework only on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianlivoni committed Feb 1, 2025
1 parent ea499a4 commit 40b6ea4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/browser/BrowserShared.mm
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

#include "BrowserShared.h"

#include "config-keepassx.h"
Expand All @@ -27,6 +25,10 @@
#include <QProcessEnvironment>
#endif

#if defined(Q_OS_MACOS)
#include <Foundation/Foundation.h>
#endif

namespace BrowserShared
{
QString localServerPath()
Expand Down

0 comments on commit 40b6ea4

Please sign in to comment.