Rename Borland C to C++ and update sLang

Rename db/LX/compiler_Borland_C.4.sg to db/LX/compiler_Borland_C++.4.sg and update the detect() function to set sLang from "C/C++" to "C++". This adjusts the file/name to explicitly represent the C++ compiler and aligns the language identifier accordingly; no other functional changes.
This commit is contained in:
DosX 2026-06-21 12:44:48 +03:00
commit bb3351fdbb

View file

@ -13,7 +13,7 @@ function detect() {
bDetected = bDetected || Boolean(sVersion) || Boolean(sOptions);
sLang = "C/C++";
sLang = "C++";
return result();
}