From cfb19a7085895cdbcf09c123c37735586dbe7695 Mon Sep 17 00:00:00 2001 From: Gloria Mundi Date: Tue, 5 Nov 2024 20:19:04 +0100 Subject: make it build with a new tex version --- other/other.tex | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'other') diff --git a/other/other.tex b/other/other.tex index 7e73260..044ad02 100644 --- a/other/other.tex +++ b/other/other.tex @@ -17,9 +17,9 @@ \begin{expandtable} \begin{tabularx}{\linewidth}{|Ll|} \hline - Bit an Position j lesen & \code{(x & (1 << j)) != 0} \\ + Bit an Position j lesen & \code{(x \& (1 << j)) != 0} \\ Bit an Position j setzten & \code{x |= (1 << j)} \\ - Bit an Position j löschen & \code{x &= ~(1 << j)} \\ + Bit an Position j löschen & \code{x \&= ~(1 << j)} \\ Bit an Position j flippen & \code{x ^= (1 << j)} \\ Anzahl an führenden nullen ($x \neq 0$) & \code{__builtin_clzll(x)} \\ Anzahl an schließenden nullen ($x \neq 0$) & \code{__builtin_ctzll(x)} \\ @@ -36,9 +36,9 @@ \begin{expandtable} \begin{tabularx}{\linewidth}{|lR|} \hline - Addition & \code{__builtin_saddll_overflow(a, b, &c)} \\ - Subtraktion & \code{__builtin_ssubll_overflow(a, b, &c)} \\ - Multiplikation & \code{__builtin_smulll_overflow(a, b, &c)} \\ + Addition & \code{__builtin_saddll_overflow(a, b, \&c)} \\ + Subtraktion & \code{__builtin_ssubll_overflow(a, b, \&c)} \\ + Multiplikation & \code{__builtin_smulll_overflow(a, b, \&c)} \\ \hline \end{tabularx} \end{expandtable} -- cgit v1.2.3