We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d78d32a commit 3faf3d9Copy full SHA for 3faf3d9
src/include/firebird/Message.h
@@ -77,27 +77,27 @@
77
return desc.getMetadata(); \
78
} \
79
\
80
- void clear() \
+ void clear() noexcept \
81
{ \
82
memset(&data, 0, sizeof(data)); \
83
84
85
- Type* getData() \
+ Type* getData() noexcept \
86
87
return &data; \
88
89
90
- const Type* getData() const \
+ const Type* getData() const noexcept \
91
92
93
94
95
- Type* operator ->() \
+ Type* operator ->() noexcept \
96
97
return getData(); \
98
99
100
- const Type* operator ->() const \
+ const Type* operator ->() const noexcept \
101
102
103
0 commit comments