Remove deprecated mju_{error,warning}_{i,s} functions.

PiperOrigin-RevId: 925204136
Change-Id: Ia877d08a135092db8037d04e6a237e81325a1d7c
This commit is contained in:
Yuval Tassa
2026-06-02 01:58:19 -07:00
committed by Copybara-Service
parent ad23db5942
commit 062b0f1ea6
10 changed files with 3 additions and 241 deletions
-24
View File
@@ -169,30 +169,6 @@ void mju_warning(const char* msg, ...) {
}
// error with int argument
void mju_error_i(const char* msg, int i) {
mju_error(msg, i);
}
// warning with int argument
void mju_warning_i(const char* msg, int i) {
mju_warning(msg, i);
}
// error string argument
void mju_error_s(const char* msg, const char* text) {
mju_error(msg, text);
}
// warning string argument
void mju_warning_s(const char* msg, const char* text) {
mju_warning(msg, text);
}
//------------------------------ malloc and free ---------------------------------------------------
// allocate memory; byte-align on 64; pad size to multiple of 64