Skip to content

Commit 9322216

Browse files
committed
[clang-tidy][DOC] Fix 'table cell spanning'
Change current tables to avoid cell spanning.
1 parent 764c7ae commit 9322216

File tree

2 files changed

+35
-35
lines changed

2 files changed

+35
-35
lines changed

clang-tools-extra/docs/clang-tidy/Integrations.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The following table shows the most well-known :program:`clang-tidy`
1515
integrations in detail.
1616

1717
+--------------------------------------+------------------------+---------------------------------+--------------------------+-----------------------------------------+--------------------------+
18-
| | Feature |
18+
| | Feature | | | | |
1919
+======================================+========================+=================================+==========================+=========================================+==========================+
2020
| **Tool** | On-the-fly inspection | Check list configuration (GUI) | Options to checks (GUI) | Configuration via ``.clang-tidy`` files | Custom clang-tidy binary |
2121
+--------------------------------------+------------------------+---------------------------------+--------------------------+-----------------------------------------+--------------------------+

clang-tools-extra/docs/clang-tidy/checks/readability/identifier-naming.rst

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -2526,41 +2526,41 @@ Otherwise the case of this character denotes scope.
25262526
The following table is the default mapping table of Hungarian Notation which
25272527
maps Decl to its prefix string. You can also have your own style in config file.
25282528

2529-
================= ============== ====================== ============== =========== ==============
2530-
Primitive Types Microsoft data types
2531-
---------------------------------------------------------------------- --------------------------
2532-
Type Prefix Type Prefix Type Prefix
2533-
================= ============== ====================== ============== =========== ==============
2534-
int8_t i8 signed int si BOOL b
2535-
int16_t i16 signed short ss BOOLEAN b
2536-
int32_t i32 signed short int ssi BYTE by
2537-
int64_t i64 signed long long int slli CHAR c
2538-
uint8_t u8 signed long long sll UCHAR uc
2539-
uint16_t u16 signed long int sli SHORT s
2540-
uint32_t u32 signed long sl USHORT us
2541-
uint64_t u64 signed s WORD w
2542-
char8_t c8 unsigned long long int ulli DWORD dw
2543-
char16_t c16 unsigned long long ull DWORD32 dw32
2544-
char32_t c32 unsigned long int uli DWORD64 dw64
2545-
float f unsigned long ul LONG l
2546-
double d unsigned short int usi ULONG ul
2547-
char c unsigned short us ULONG32 ul32
2548-
bool b unsigned int ui ULONG64 ul64
2549-
_Bool b unsigned char uc ULONGLONG ull
2550-
int i unsigned u HANDLE h
2551-
size_t n long long int lli INT i
2552-
short s long double ld INT8 i8
2553-
signed i long long ll INT16 i16
2554-
unsigned u long int li INT32 i32
2555-
long l long l INT64 i64
2556-
long long ll ptrdiff_t p UINT ui
2557-
unsigned long ul void *none* UINT8 u8
2558-
long double ld UINT16 u16
2559-
ptrdiff_t p UINT32 u32
2560-
wchar_t wc UINT64 u64
2561-
short int si PVOID p
2529+
================= ============== ====================== ============== ============== ==============
2530+
Primitive Type Microsoft Type
2531+
----------------- -------------- ---------------------- -------------- -------------- --------------
2532+
Type Prefix Type Prefix Type Prefix
2533+
================= ============== ====================== ============== ============== ==============
2534+
int8_t i8 signed int si BOOL b
2535+
int16_t i16 signed short ss BOOLEAN b
2536+
int32_t i32 signed short int ssi BYTE by
2537+
int64_t i64 signed long long int slli CHAR c
2538+
uint8_t u8 signed long long sll UCHAR uc
2539+
uint16_t u16 signed long int sli SHORT s
2540+
uint32_t u32 signed long sl USHORT us
2541+
uint64_t u64 signed s WORD w
2542+
char8_t c8 unsigned long long int ulli DWORD dw
2543+
char16_t c16 unsigned long long ull DWORD32 dw32
2544+
char32_t c32 unsigned long int uli DWORD64 dw64
2545+
float f unsigned long ul LONG l
2546+
double d unsigned short int usi ULONG ul
2547+
char c unsigned short us ULONG32 ul32
2548+
bool b unsigned int ui ULONG64 ul64
2549+
_Bool b unsigned char uc ULONGLONG ull
2550+
int i unsigned u HANDLE h
2551+
size_t n long long int lli INT i
2552+
short s long double ld INT8 i8
2553+
signed i long long ll INT16 i16
2554+
unsigned u long int li INT32 i32
2555+
long l long l INT64 i64
2556+
long long ll ptrdiff_t p UINT ui
2557+
unsigned long ul void *none* UINT8 u8
2558+
long double ld UINT16 u16
2559+
ptrdiff_t p UINT32 u32
2560+
wchar_t wc UINT64 u64
2561+
short int si PVOID p
25622562
short s
2563-
================= ============== ====================== ============== =========== ==============
2563+
================= ============== ====================== ============== ============== ==============
25642564

25652565
**There are more trivial options for Hungarian Notation:**
25662566

0 commit comments

Comments
 (0)