diff src/errors.h @ 31592:65a2bae18b27 v9.0.1128

patch 9.0.1128: build failure Commit: https://github.com/vim/vim/commit/993dbc33a82a4ed877ee76265d6483b190e2feb1 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 1 20:31:30 2023 +0000 patch 9.0.1128: build failure Problem: Build failure. Solution: Add type cast. Add missing error messages.
author Bram Moolenaar <Bram@vim.org>
date Sun, 01 Jan 2023 21:45:03 +0100
parents 966c87c57912
children 53c3df37a2b0
line wrap: on
line diff
--- a/src/errors.h
+++ b/src/errors.h
@@ -3401,3 +3401,9 @@ EXTERN char e_member_not_found_on_class_
 EXTERN char e_cannot_add_textprop_with_text_after_using_textprop_with_negative_id[]
 	INIT(= N_("E1339: Cannot add a textprop with text after using a textprop with a negative id"));
 #endif
+#ifdef FEAT_EVAL
+EXTERN char e_argument_already_declared_in_class_str[]
+	INIT(= N_("E1340: Argument already declared in the class: %s"));
+EXTERN char e_variable_already_declared_in_class_str[]
+	INIT(= N_("E1341: Variable already declared in the class: %s"));
+#endif