From 6c085c93ae2d5df0529ae446a8193b5efdd496cc Mon Sep 17 00:00:00 2001 From: czertyaka Date: Sat, 13 Sep 2025 13:19:25 +0500 Subject: [PATCH] Add manual line break for comment --- Presentations/10-Conversions/conversions.tex | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Presentations/10-Conversions/conversions.tex b/Presentations/10-Conversions/conversions.tex index dc3edb7..2f0f1bf 100644 --- a/Presentations/10-Conversions/conversions.tex +++ b/Presentations/10-Conversions/conversions.tex @@ -410,7 +410,8 @@ никаких гарантий. \begin{myinplacelisting}[minted language=cpp] -typedef void(*t_func)(); // alias for type of pointer to function +typedef void(*t_func)(); // alias for type of pointer + // to function int x {}; t_func f1 = static_cast(&x); // compilation error t_func f2 = reinterpret_cast(&x);