Support Board
Date/Time: Mon, 25 Nov 2024 14:35:56 +0000
Post From: is it ok to put a semicolon ';' behind the SCDLLName statement?
[2024-02-29 17:33:39] |
User719512 - Posts: 264 |
What editor is this? Or is this linting rules you have set? In c/c++, you can add semi-colons almost anywhere. So YES, adding one is perfectly fine. Also, if it compiles, a good sign, it's ok as well. tl;dr You could even do something like this, just to demonstrate: ; ;;; SCDLLName("123_Sample Custom Study DLL");; ; Again, just showing semi-colon usage, not great coding patterns. |