Skip to content

Commit da21797

Browse files
authored
CoPilot recommends using https: instead of http (#622)
1 parent 41f2e3e commit da21797

123 files changed

Lines changed: 167 additions & 168 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/copilot-instructions.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ Every source file (`.cpp`, `.h`, `.hlsl`, `.fx`, etc.) must begin with this bloc
166166
// Copyright (c) Microsoft Corporation.
167167
// Licensed under the MIT License.
168168
//
169-
// http://go.microsoft.com/fwlink/?LinkId=248929
169+
// https://go.microsoft.com/fwlink/?LinkId=248929
170170
//-------------------------------------------------------------------------------------
171171
```
172172

@@ -243,9 +243,8 @@ Use these established guards — do not invent new ones:
243243
| `_WIN32` | Windows platform (desktop, UWP, Xbox) |
244244
| `_GAMING_XBOX` | Xbox One |
245245
| `_XBOX_ONE && _TITLE` | Xbox One XDK (legacy) |
246-
| `_MSC_VER` | MSVC-specific pragmas and warning suppression |
247-
| `__clang__` | Clang/LLVM diagnostic suppressions |
248246
| `_MSC_VER` | MSVC-specific (and MSVC-like clang-cl) pragmas and warning suppression |
247+
| `__clang__` | Clang/LLVM diagnostic suppressions |
249248
| `__GNUC__` | MinGW/GCC DLL attribute equivalents |
250249
| `_M_ARM64` / `_M_X64` / `_M_IX86` | Architecture-specific code paths for MSVC (`#ifdef`) |
251250
| `_M_ARM64EC` | ARM64EC ABI (ARM64 code with x64 interop) for MSVC |

Audio/AudioEngine.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
// Copyright (c) Microsoft Corporation.
55
// Licensed under the MIT License.
66
//
7-
// http://go.microsoft.com/fwlink/?LinkId=248929
8-
// http://go.microsoft.com/fwlink/?LinkID=615561
7+
// https://go.microsoft.com/fwlink/?LinkId=248929
8+
// https://go.microsoft.com/fwlink/?LinkID=615561
99
//--------------------------------------------------------------------------------------
1010

1111
#include "pch.h"

Audio/DynamicSoundEffectInstance.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
// Copyright (c) Microsoft Corporation.
55
// Licensed under the MIT License.
66
//
7-
// http://go.microsoft.com/fwlink/?LinkId=248929
8-
// http://go.microsoft.com/fwlink/?LinkID=615561
7+
// https://go.microsoft.com/fwlink/?LinkId=248929
8+
// https://go.microsoft.com/fwlink/?LinkID=615561
99
//--------------------------------------------------------------------------------------
1010

1111
#include "pch.h"

Audio/SoundCommon.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
// Copyright (c) Microsoft Corporation.
55
// Licensed under the MIT License.
66
//
7-
// http://go.microsoft.com/fwlink/?LinkId=248929
8-
// http://go.microsoft.com/fwlink/?LinkID=615561
7+
// https://go.microsoft.com/fwlink/?LinkId=248929
8+
// https://go.microsoft.com/fwlink/?LinkID=615561
99
//--------------------------------------------------------------------------------------
1010

1111
#include "pch.h"

Audio/SoundCommon.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
// Copyright (c) Microsoft Corporation.
55
// Licensed under the MIT License.
66
//
7-
// http://go.microsoft.com/fwlink/?LinkId=248929
8-
// http://go.microsoft.com/fwlink/?LinkID=615561
7+
// https://go.microsoft.com/fwlink/?LinkId=248929
8+
// https://go.microsoft.com/fwlink/?LinkID=615561
99
//--------------------------------------------------------------------------------------
1010

1111
#pragma once

Audio/SoundEffect.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
// Copyright (c) Microsoft Corporation.
55
// Licensed under the MIT License.
66
//
7-
// http://go.microsoft.com/fwlink/?LinkId=248929
8-
// http://go.microsoft.com/fwlink/?LinkID=615561
7+
// https://go.microsoft.com/fwlink/?LinkId=248929
8+
// https://go.microsoft.com/fwlink/?LinkID=615561
99
//--------------------------------------------------------------------------------------
1010

1111
#include "pch.h"

Audio/SoundEffectInstance.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
// Copyright (c) Microsoft Corporation.
55
// Licensed under the MIT License.
66
//
7-
// http://go.microsoft.com/fwlink/?LinkId=248929
8-
// http://go.microsoft.com/fwlink/?LinkID=615561
7+
// https://go.microsoft.com/fwlink/?LinkId=248929
8+
// https://go.microsoft.com/fwlink/?LinkID=615561
99
//--------------------------------------------------------------------------------------
1010

1111
#include "pch.h"

Audio/SoundStreamInstance.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
// Copyright (c) Microsoft Corporation.
55
// Licensed under the MIT License.
66
//
7-
// http://go.microsoft.com/fwlink/?LinkId=248929
8-
// http://go.microsoft.com/fwlink/?LinkID=615561
7+
// https://go.microsoft.com/fwlink/?LinkId=248929
8+
// https://go.microsoft.com/fwlink/?LinkID=615561
99
//--------------------------------------------------------------------------------------
1010

1111
#include "pch.h"

Audio/WAVFileReader.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
// Copyright (c) Microsoft Corporation.
77
// Licensed under the MIT License.
88
//
9-
// http://go.microsoft.com/fwlink/?LinkId=248929
10-
// http://go.microsoft.com/fwlink/?LinkID=615561
9+
// https://go.microsoft.com/fwlink/?LinkId=248929
10+
// https://go.microsoft.com/fwlink/?LinkID=615561
1111
//-------------------------------------------------------------------------------------
1212

1313
#include "pch.h"

Audio/WAVFileReader.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
// Copyright (c) Microsoft Corporation.
77
// Licensed under the MIT License.
88
//
9-
// http://go.microsoft.com/fwlink/?LinkId=248929
10-
// http://go.microsoft.com/fwlink/?LinkID=615561
9+
// https://go.microsoft.com/fwlink/?LinkId=248929
10+
// https://go.microsoft.com/fwlink/?LinkID=615561
1111
//-------------------------------------------------------------------------------------
1212

1313
#pragma once

0 commit comments

Comments
 (0)