Skip to content

Commit

Permalink
Optimizes header inclusion.
Browse files Browse the repository at this point in the history
  • Loading branch information
mntone committed Dec 25, 2022
1 parent e723d72 commit f17d98c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
3 changes: 3 additions & 0 deletions src/PositiveDesktop/Common/Reps.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#pragma once

#include <atomic>
#include <vector>

// RElationshiPS Library: Micro observer pattern
#include "RepsBase.h"

Expand Down
2 changes: 1 addition & 1 deletion src/PositiveDesktop/PositiveDesktop.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
<ItemDefinitionGroup>
<ClCompile>
<WarningLevel>Level4</WarningLevel>
<AdditionalOptions>%(AdditionalOptions) /bigobj</AdditionalOptions>
<AdditionalOptions>%(AdditionalOptions) /bigobj /Zm200</AdditionalOptions>
<FloatingPointModel>Fast</FloatingPointModel>
<LanguageStandard>stdcpp20</LanguageStandard>
<ConformanceMode>true</ConformanceMode>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
#include "pch.h"
#include "VirtualDesktopNotificationService.h"

#include <atomic>
#include <vector>

#include "UI/NotificationPresenter.h"

using namespace app::listener;
Expand Down
1 change: 0 additions & 1 deletion src/PositiveDesktop/UI/NotificationPresenterWinUI3.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#include "pch.h"
#include "NotificationPresenterWinUI3.h"

#include <winrt/Windows.Foundation.Collections.h>
#include <winrt/Microsoft.Windows.ApplicationModel.Resources.h>

#include "NotificationWindow.xaml.h"
Expand Down
1 change: 1 addition & 0 deletions src/PositiveDesktop/pch.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
#undef GetCurrentTime

#include <winrt/Windows.Foundation.h>
#include <winrt/Windows.Foundation.Collections.h>
#include <winrt/Windows.System.h>
#include <DispatcherQueue.h>

Expand Down

0 comments on commit f17d98c

Please sign in to comment.