Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 28 additions & 28 deletions source/support.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1956,47 +1956,47 @@
#define __STDC_VERSION_STDINT_H__ 202311L

namespace std {
using int8_t = @\textit{signed integer type}@; // optional
using int16_t = @\textit{signed integer type}@; // optional
using int32_t = @\textit{signed integer type}@; // optional
using int64_t = @\textit{signed integer type}@; // optional
using int8_t = @\UNSPnc{signed integer type}@; // optional
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since we were using \placeholder for "value" in the other commit, I think this would also be better as a placeholder (i.e. \placeholdernc)? I don't think UNSP was meant to be reused like that, though using it for "see " in the other other commit seems OK.

using int16_t = @\UNSPnc{signed integer type}@; // optional
using int32_t = @\UNSPnc{signed integer type}@; // optional
using int64_t = @\UNSPnc{signed integer type}@; // optional
using int@\placeholdernc{N}@_t = @\seebelow@; // optional

using int_fast8_t = @\textit{signed integer type}@;
using int_fast16_t = @\textit{signed integer type}@;
using int_fast32_t = @\textit{signed integer type}@;
using int_fast64_t = @\textit{signed integer type}@;
using int_fast8_t = @\UNSPnc{signed integer type}@;
using int_fast16_t = @\UNSPnc{signed integer type}@;
using int_fast32_t = @\UNSPnc{signed integer type}@;
using int_fast64_t = @\UNSPnc{signed integer type}@;
using int_fast@\placeholdernc{N}@_t = @\seebelow@; // optional

using int_least8_t = @\textit{signed integer type}@;
using int_least16_t = @\textit{signed integer type}@;
using int_least32_t = @\textit{signed integer type}@;
using int_least64_t = @\textit{signed integer type}@;
using int_least8_t = @\UNSPnc{signed integer type}@;
using int_least16_t = @\UNSPnc{signed integer type}@;
using int_least32_t = @\UNSPnc{signed integer type}@;
using int_least64_t = @\UNSPnc{signed integer type}@;
using int_least@\placeholdernc{N}@_t = @\seebelow@; // optional

using intmax_t = @\textit{signed integer type}@;
using intptr_t = @\textit{signed integer type}@; // optional
using intmax_t = @\UNSPnc{signed integer type}@;
using intptr_t = @\UNSPnc{signed integer type}@; // optional

using uint8_t = @\textit{unsigned integer type}@; // optional
using uint16_t = @\textit{unsigned integer type}@; // optional
using uint32_t = @\textit{unsigned integer type}@; // optional
using uint64_t = @\textit{unsigned integer type}@; // optional
using uint8_t = @\UNSPnc{unsigned integer type}@; // optional
using uint16_t = @\UNSPnc{unsigned integer type}@; // optional
using uint32_t = @\UNSPnc{unsigned integer type}@; // optional
using uint64_t = @\UNSPnc{unsigned integer type}@; // optional
using uint@\placeholdernc{N}@_t = @\seebelow@; // optional

using uint_fast8_t = @\textit{unsigned integer type}@;
using uint_fast16_t = @\textit{unsigned integer type}@;
using uint_fast32_t = @\textit{unsigned integer type}@;
using uint_fast64_t = @\textit{unsigned integer type}@;
using uint_fast8_t = @\UNSPnc{unsigned integer type}@;
using uint_fast16_t = @\UNSPnc{unsigned integer type}@;
using uint_fast32_t = @\UNSPnc{unsigned integer type}@;
using uint_fast64_t = @\UNSPnc{unsigned integer type}@;
using uint_fast@\placeholdernc{N}@_t = @\seebelow@; // optional

using uint_least8_t = @\textit{unsigned integer type}@;
using uint_least16_t = @\textit{unsigned integer type}@;
using uint_least32_t = @\textit{unsigned integer type}@;
using uint_least64_t = @\textit{unsigned integer type}@;
using uint_least8_t = @\UNSPnc{unsigned integer type}@;
using uint_least16_t = @\UNSPnc{unsigned integer type}@;
using uint_least32_t = @\UNSPnc{unsigned integer type}@;
using uint_least64_t = @\UNSPnc{unsigned integer type}@;
using uint_least@\placeholdernc{N}@_t = @\seebelow@; // optional

using uintmax_t = @\textit{unsigned integer type}@;
using uintptr_t = @\textit{unsigned integer type}@; // optional
using uintmax_t = @\UNSPnc{unsigned integer type}@;
using uintptr_t = @\UNSPnc{unsigned integer type}@; // optional
}

#define INT@\placeholdernc{N}@_MIN @\seebelow@
Expand Down