File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 17
17
#ifndef BLE_API_SAFE_BOOL_H_
18
18
#define BLE_API_SAFE_BOOL_H_
19
19
20
- /* Safe bool idiom, see : http://www.artima.com/cppsource/safebool.html */
20
+ /* Safe bool idiom, see: http://www.artima.com/cppsource/safebool.html */
21
21
22
22
/* *
23
23
* @file
@@ -34,7 +34,7 @@ namespace SafeBool_ {
34
34
/* *
35
35
* Base class of all SafeBool instances.
36
36
*
37
- * This non template base class exists to reduces the number of instantiation of
37
+ * This nontemplate base class exists to reduce the number of instantiation of
38
38
* the trueTag function.
39
39
*/
40
40
class base {
@@ -43,17 +43,17 @@ class base {
43
43
44
44
protected:
45
45
/* *
46
- * The bool type is a pointer to method which can be used in boolean context.
46
+ * The bool type is a pointer to method that can be used in boolean context.
47
47
*/
48
48
typedef void (base::*BoolType_t)() const ;
49
49
50
50
/* *
51
- * Non implemented call, use to disallow conversion between unrelated types.
51
+ * Nonimplemented call, use to disallow conversion between unrelated types.
52
52
*/
53
53
void invalidTag () const ;
54
54
55
55
/* *
56
- * Special member function which indicate a true value.
56
+ * Special member function that indicates a true value.
57
57
*/
58
58
void trueTag () const {}
59
59
};
You can’t perform that action at this time.
0 commit comments