what next
i have been hacked some times ago that disarranged and disorganized all my system so i need a single working space for myself only now, either in my device system or in my internet services in any other ways, also a strongroom protections for all my works and accounts and make it invisible and impossible for hackers and trackers from having access over my system no matter how greate the hacker system is, also make their command trigger back to them without touching my sytem.905Views0likes0CommentsAQTime Light Coverage Profiler identifies uncovered lines with only brackets or keywords (C++)
I have some strange Light Coverage result reported by AQTime (8.71.3483.7) It shows thats the lines containing only brackets (from if-else or try-catch blocks) and `if-else` keywords are uncovered. An exmaple code: template<typename T> class Klass { public: void do() { try { if ( ... ) { //... } else /* this line is reported as uncovered */ { //... } /* this line is reported as uncovered */ } catch (SomeEx&) { //... } /* this line is reported as uncovered */ catch (SomeOtherEx&) { //... } /* this line is reported as uncovered */ } }; The whole code is actually covered but the report shows such lines uncovered. is it expected behavour? How can I get rid of it? thanksSolved3.6KViews0likes2Comments