diff options
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/FindJPEG/Test/main.c | 3 | ||||
-rw-r--r-- | Tests/FindX11/Test/main.c | 5 | ||||
-rw-r--r-- | Tests/MFC/mfc1/ChildFrm.cpp | 2 | ||||
-rw-r--r-- | Tests/MFC/mfc1/MainFrm.cpp | 2 | ||||
-rw-r--r-- | Tests/MFC/mfc1/mfc1.cpp | 2 | ||||
-rw-r--r-- | Tests/MFC/mfc1/mfc1Doc.cpp | 2 | ||||
-rw-r--r-- | Tests/MFC/mfc1/mfc1View.cpp | 2 | ||||
-rw-r--r-- | Tests/VSWinStorePhone/Direct3DApp1/CubeRenderer.cpp | 2 | ||||
-rw-r--r-- | Tests/VSWinStorePhone/Direct3DApp1/Direct3DApp1.h | 2 | ||||
-rw-r--r-- | Tests/VSWinStorePhone/Direct3DApp1/Direct3DBase.cpp | 2 |
10 files changed, 20 insertions, 4 deletions
diff --git a/Tests/FindJPEG/Test/main.c b/Tests/FindJPEG/Test/main.c index 0e23eff..5a67faa 100644 --- a/Tests/FindJPEG/Test/main.c +++ b/Tests/FindJPEG/Test/main.c @@ -1,7 +1,8 @@ #include <assert.h> +// clang-format off #include <stdio.h> - #include <jpeglib.h> +// clang-format on int main() { diff --git a/Tests/FindX11/Test/main.c b/Tests/FindX11/Test/main.c index 044bfa2..c8144e0 100644 --- a/Tests/FindX11/Test/main.c +++ b/Tests/FindX11/Test/main.c @@ -167,12 +167,12 @@ static Bool test_Xkb(void) #endif #ifdef HAVE_X11_xkbfile +// clang-format off # include <stdio.h> - # include <X11/XKBlib.h> # include <X11/extensions/XKBfile.h> - # include <stdlib.h> +// clang-format on static void test_xkbfile(void) { @@ -184,7 +184,6 @@ static void test_xkbfile(void) #ifdef HAVE_X11_Xmu # include <X11/Xmu/Xmu.h> - # include <stdlib.h> static Bool test_Xmu(void) diff --git a/Tests/MFC/mfc1/ChildFrm.cpp b/Tests/MFC/mfc1/ChildFrm.cpp index a415229..0422d2a 100644 --- a/Tests/MFC/mfc1/ChildFrm.cpp +++ b/Tests/MFC/mfc1/ChildFrm.cpp @@ -1,11 +1,13 @@ // ChildFrm.cpp : implementation of the CChildFrame class // +// clang-format off #include "stdafx.h" #include "mfc1.h" #include "ChildFrm.h" +// clang-format on #ifdef _DEBUG # define new DEBUG_NEW diff --git a/Tests/MFC/mfc1/MainFrm.cpp b/Tests/MFC/mfc1/MainFrm.cpp index 6bd2b3d..7f82e26 100644 --- a/Tests/MFC/mfc1/MainFrm.cpp +++ b/Tests/MFC/mfc1/MainFrm.cpp @@ -1,11 +1,13 @@ // MainFrm.cpp : implementation of the CMainFrame class // +// clang-format off #include "stdafx.h" #include "mfc1.h" #include "MainFrm.h" +// clang-format on #ifdef _DEBUG # define new DEBUG_NEW diff --git a/Tests/MFC/mfc1/mfc1.cpp b/Tests/MFC/mfc1/mfc1.cpp index 892a89d..87406b6 100644 --- a/Tests/MFC/mfc1/mfc1.cpp +++ b/Tests/MFC/mfc1/mfc1.cpp @@ -1,6 +1,7 @@ // mfc1.cpp : Defines the class behaviors for the application. // +// clang-format off #include "stdafx.h" #include "MainFrm.h" @@ -9,6 +10,7 @@ #include "ChildFrm.h" #include "mfc1Doc.h" #include "mfc1View.h" +// clang-format on #ifdef _DEBUG # define new DEBUG_NEW diff --git a/Tests/MFC/mfc1/mfc1Doc.cpp b/Tests/MFC/mfc1/mfc1Doc.cpp index e69b61c..ef8b6af 100644 --- a/Tests/MFC/mfc1/mfc1Doc.cpp +++ b/Tests/MFC/mfc1/mfc1Doc.cpp @@ -1,11 +1,13 @@ // mfc1Doc.cpp : implementation of the Cmfc1Doc class // +// clang-format off #include "stdafx.h" #include "mfc1.h" #include "mfc1Doc.h" +// clang-format on #ifdef _DEBUG # define new DEBUG_NEW diff --git a/Tests/MFC/mfc1/mfc1View.cpp b/Tests/MFC/mfc1/mfc1View.cpp index 3de55cf..55dcb8e 100644 --- a/Tests/MFC/mfc1/mfc1View.cpp +++ b/Tests/MFC/mfc1/mfc1View.cpp @@ -1,12 +1,14 @@ // mfc1View.cpp : implementation of the Cmfc1View class // +// clang-format off #include "stdafx.h" #include "mfc1.h" #include "mfc1Doc.h" #include "mfc1View.h" +// clang-format on #ifdef _DEBUG # define new DEBUG_NEW diff --git a/Tests/VSWinStorePhone/Direct3DApp1/CubeRenderer.cpp b/Tests/VSWinStorePhone/Direct3DApp1/CubeRenderer.cpp index 3ba35fa..595f553 100644 --- a/Tests/VSWinStorePhone/Direct3DApp1/CubeRenderer.cpp +++ b/Tests/VSWinStorePhone/Direct3DApp1/CubeRenderer.cpp @@ -1,6 +1,8 @@ +// clang-format off #include "pch.h" #include "CubeRenderer.h" +// clang-format on using namespace DirectX; using namespace Microsoft::WRL; diff --git a/Tests/VSWinStorePhone/Direct3DApp1/Direct3DApp1.h b/Tests/VSWinStorePhone/Direct3DApp1/Direct3DApp1.h index c3499c7..79b9070 100644 --- a/Tests/VSWinStorePhone/Direct3DApp1/Direct3DApp1.h +++ b/Tests/VSWinStorePhone/Direct3DApp1/Direct3DApp1.h @@ -1,8 +1,10 @@ #pragma once +// clang-format off #include "pch.h" #include "CubeRenderer.h" +// clang-format on ref class Direct3DApp1 sealed : public Windows::ApplicationModel::Core::IFrameworkView diff --git a/Tests/VSWinStorePhone/Direct3DApp1/Direct3DBase.cpp b/Tests/VSWinStorePhone/Direct3DApp1/Direct3DBase.cpp index 0662fbe..f24ce28 100644 --- a/Tests/VSWinStorePhone/Direct3DApp1/Direct3DBase.cpp +++ b/Tests/VSWinStorePhone/Direct3DApp1/Direct3DBase.cpp @@ -1,6 +1,8 @@ +// clang-format off #include "pch.h" #include "Direct3DBase.h" +// clang-format on using namespace DirectX; using namespace Microsoft::WRL; |