Home
Feedback Tracker
Search
Configure Global Search
Log In
Transactions
T157285
Change Details
Change Details
Old
New
Diff
I tried to get an empty string for my Discord webhook and noticed, that this line seems to confuse the CParser: ```c string content = "\"\""; ``` When I try to compile, it gives me this error: `CParser: quoted string not closed on line 80, ...` when I do ```c string content = "\" \""; ``` It works without any problems
I tried to get an empty string for my Discord webhook and noticed, that this line seems to confuse the CParser: ``` string content = "\"\""; ``` When I try to compile, it gives me this error: `CParser: quoted string not closed on line 80, ...` when I do ``` string content = "\" \""; ``` It works without any problems
I tried to get an empty string for my Discord webhook and noticed, that this line seems to confuse the CParser: ```
c
string content = "\"\""; ``` When I try to compile, it gives me this error: `CParser: quoted string not closed on line 80, ...` when I do ```
c
string content = "\" \""; ``` It works without any problems
Continue