From 955308de57822070329a54538d528967c87f0883 Mon Sep 17 00:00:00 2001 From: Enrico Forestieri Date: Sun, 6 Mar 2022 23:01:56 +0100 Subject: [PATCH] Amend 3f9e21b8 This avoids a compile error on cygwin. --- src/Encoding.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Encoding.h b/src/Encoding.h index 9668336843..4913ddc238 100644 --- a/src/Encoding.h +++ b/src/Encoding.h @@ -113,10 +113,10 @@ public: private: /// LaTeX commands (text mode) for this character. The first one is the default, the others /// are only present for compatibility other ways users may encode the character - std::vector text_commands_; + std::vector text_commands_; /// LaTeX command (math mode) for this character. The first one is the default, the others // /// are only present for compatibility other ways users may encode the character - std::vector math_commands_; + std::vector math_commands_; /// Needed LaTeX preamble (or feature) for text mode trivstring text_preamble_; /// Needed LaTeX preamble (or feature) for math mode -- 2.39.5