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 cc77e80 commit ea2c16eCopy full SHA for ea2c16e
sigc++/scoped_connection.h
@@ -118,7 +118,7 @@ struct SIGC_API scoped_connection final
118
scoped_connection& operator=(scoped_connection&& sc);
119
120
/// Swap two scoped connections.
121
- friend void swap(scoped_connection& sca, scoped_connection& scb) noexcept;
+ friend SIGC_API void swap(scoped_connection& sca, scoped_connection& scb) noexcept;
122
123
/// scoped_connection disconnects the referred slot, if any, upon destruction.
124
~scoped_connection();
@@ -168,6 +168,7 @@ struct SIGC_API scoped_connection final
168
sigc::connection conn_;
169
};
170
171
+/// Swap two scoped connections.
172
SIGC_API
173
void swap(scoped_connection& sca, scoped_connection& scb) noexcept;
174
0 commit comments