File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
cpp/common/src/codingstandards/cpp Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -421,9 +421,10 @@ class LockProtectedControlFlowNode extends ThreadedCFN {
421
421
/**
422
422
* Models a function that conditionally waits.
423
423
*/
424
- abstract class ConditionalWait extends FunctionCall { }
424
+ abstract class ConditionalWait extends FunctionCall { }
425
+
425
426
/**
426
- * Models a function in CPP that will conditionally wait.
427
+ * Models a function in CPP that will conditionally wait.
427
428
*/
428
429
class CPPConditionalWait extends ConditionalWait {
429
430
CPPConditionalWait ( ) {
@@ -436,12 +437,10 @@ class CPPConditionalWait extends ConditionalWait {
436
437
}
437
438
438
439
/**
439
- * Models a function in C that will conditionally wait.
440
+ * Models a function in C that will conditionally wait.
440
441
*/
441
442
class CConditionalWait extends ConditionalWait {
442
- CConditionalWait ( ) {
443
- getTarget ( ) .getName ( ) in [ "cnd_wait" ]
444
- }
443
+ CConditionalWait ( ) { getTarget ( ) .getName ( ) in [ "cnd_wait" ] }
445
444
}
446
445
447
446
/**
You can’t perform that action at this time.
0 commit comments