wonder Expert Licensed User Longtime User Nov 14, 2015 #1 Hi! Is there a way to suppress or acknowledge the warnings (like unused variables) in the IDE?
mangojack Expert Licensed User Longtime User Nov 14, 2015 #2 as a last resort ... B4X: #Region Module Attributes #FullScreen: True #IncludeTitle: False #IgnoreWarnings: 9, 10, 12, 26, 28 #End Region Upvote 0
as a last resort ... B4X: #Region Module Attributes #FullScreen: True #IncludeTitle: False #IgnoreWarnings: 9, 10, 12, 26, 28 #End Region
wonder Expert Licensed User Longtime User Nov 14, 2015 #3 Thanks!! Are those the warning numbers or line numbers? Upvote 0
mangojack Expert Licensed User Longtime User Nov 14, 2015 #4 wonder said: Thanks!! Are those the warning numbers or line numbers? Click to expand... Warning numbers .. Unused Variable... (warning #9) Upvote 0
wonder said: Thanks!! Are those the warning numbers or line numbers? Click to expand... Warning numbers .. Unused Variable... (warning #9)
R Roycefer Well-Known Member Licensed User Longtime User Nov 14, 2015 #5 You can also put "ignore" in a comment on the line that is eliciting the warning, that way you don't have to ignore all warnings of a certain type. Upvote 0
You can also put "ignore" in a comment on the line that is eliciting the warning, that way you don't have to ignore all warnings of a certain type.
wonder Expert Licensed User Longtime User Nov 15, 2015 #6 Roycefer said: You can also put "ignore" in a comment on the line that is eliciting the warning, that way you don't have to ignore all warnings of a certain type. Click to expand... Awesome, thanks!! Upvote 0
Roycefer said: You can also put "ignore" in a comment on the line that is eliciting the warning, that way you don't have to ignore all warnings of a certain type. Click to expand... Awesome, thanks!!