diff options
author | Brad King <brad.king@kitware.com> | 2016-04-29 13:07:46 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-04-29 14:56:59 (GMT) |
commit | eb817be034e0fd50b7abfc3ae032e2e06cbfd040 (patch) | |
tree | d392cd77a0ebf56dd2519c40b94b3b4fbe673b9e /Tests/VSXaml | |
parent | eda313b485a9252c176090a8c358127a2116551d (diff) | |
download | CMake-eb817be034e0fd50b7abfc3ae032e2e06cbfd040.zip CMake-eb817be034e0fd50b7abfc3ae032e2e06cbfd040.tar.gz CMake-eb817be034e0fd50b7abfc3ae032e2e06cbfd040.tar.bz2 |
Tests: Stabilize include order in MFC, VSXaml, and VSWinStorePhone
These tests use a precompiled header that must be included first.
Include the header in an isolated block so that tools that sort
includes do not move it.
Diffstat (limited to 'Tests/VSXaml')
-rw-r--r-- | Tests/VSXaml/App.xaml.cpp | 3 | ||||
-rw-r--r-- | Tests/VSXaml/MainPage.xaml.cpp | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Tests/VSXaml/App.xaml.cpp b/Tests/VSXaml/App.xaml.cpp index 334dc1f..2cb2b32 100644 --- a/Tests/VSXaml/App.xaml.cpp +++ b/Tests/VSXaml/App.xaml.cpp @@ -4,6 +4,7 @@ // #include "pch.h" + #include "MainPage.xaml.h" using namespace VSXaml; @@ -122,4 +123,4 @@ void App::OnSuspending(Object^ sender, SuspendingEventArgs^ e) void App::OnNavigationFailed(Platform::Object ^sender, Windows::UI::Xaml::Navigation::NavigationFailedEventArgs ^e) { throw ref new FailureException("Failed to load Page " + e->SourcePageType.Name); -}
\ No newline at end of file +} diff --git a/Tests/VSXaml/MainPage.xaml.cpp b/Tests/VSXaml/MainPage.xaml.cpp index d0a64e8..63f2dec 100644 --- a/Tests/VSXaml/MainPage.xaml.cpp +++ b/Tests/VSXaml/MainPage.xaml.cpp @@ -4,6 +4,7 @@ // #include "pch.h" + #include "MainPage.xaml.h" using namespace VSXaml; |