Skip to content

Commit d48efa9

Browse files
committed
Move RemoveFontResource to tools folder
1 parent efbafb4 commit d48efa9

7 files changed

Lines changed: 13 additions & 9 deletions

File tree

TextLayoutSampler.vcxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@
208208
</ItemGroup>
209209
<ItemGroup>
210210
<None Include="LICENSE.txt" />
211+
<None Include="README.md" />
211212
</ItemGroup>
212213
<ItemGroup>
213214
<Natvis Include="source/Common.ArrayRef.natvis" />

_clang-format.disabled

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2+
# Disable until clang format supports closing brace on new line.
3+
# https://reviews.llvm.org/D109557
24
Language: Cpp,
35
AlignAfterOpenBracket: AlwaysBreak,
46
UseTab: Never,

source/Common.Variant.h

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
//----------------------------------------------------------------------------
22
// History: 2018-11-29 Dwayne Robinson - Created
3-
// Summary: Extended variant which contains more intuitive methods rather
4-
// inconvenient free functions.
3+
// Summary: Extended std::variant which contains more intuitive methods
4+
// rather awkward and poorly named free functions.
5+
//
6+
// Extended methods:
7+
//
8+
// v.get<T>()
9+
// v.is_type<T>()
10+
// v.index_of_type<T>()
11+
// v.call<Callback>(Callback& callback)
12+
//
513
//----------------------------------------------------------------------------
614
#pragma once
715

@@ -22,13 +30,6 @@ constexpr std::size_t variant_index()
2230
}
2331
}
2432

25-
// Extends std::variant with the following methods:
26-
//
27-
// v.get<T>()
28-
// v.is_type<T>()
29-
// v.index_of_type<T>()
30-
// v.call<Callback>(Callback& callback)
31-
//
3233
template <typename... Ts>
3334
class variantex : public std::variant<Ts...>
3435
{

source/TextLayoutSampler.png

-24.6 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)