You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following descriptions in the ini files cause problems for Windows Visual Studio users. In this case, the ini file reader cannot recognize the // as the comment delimiter, and the setting parameter is handled as STRING_VALUE // Comment, not STRING_VALUE.
string_parameter = STRING_VALUE // Comment
Windows users can fix this problem by changing the ini file without // Comment.
string_parameter = STRING_VALUE
or write a comment in another line
// Comment
string_parameter = STRING_VALUE
Conditions of occurrence
Windows Visual Studio users.
Additional information
The standard ini file specification uses the ; as the comment delimiter, not //.
However, the S2E defines the // as the comment delimiter in ini files.
Details
Description
The following descriptions in the
ini
files cause problems for Windows Visual Studio users. In this case, theini
file reader cannot recognize the//
as the comment delimiter, and the setting parameter is handled asSTRING_VALUE // Comment
, notSTRING_VALUE.
Windows users can fix this problem by changing the
ini
file without// Comment
.or write a comment in another line
Conditions of occurrence
Windows Visual Studio users.
Additional information
ini
file specification uses the;
as the comment delimiter, not//
.//
as the comment delimiter inini
files.// Comment
works for all usersTasks
//
in the Windows environmentImpact
Windows user only.
Supplementary notes
Related PRs and issues.
#575
#254
#549
Notes
The text was updated successfully, but these errors were encountered: