Age | Commit message (Expand) | Author |
---|---|---|
2021-05-02 | throw() -> noexcept, part 2/3: Automatic loplugin:noexcept rewrite | Stephan Bergmann | Rizal Muttaqin |
--- include/cppunit/plugin/TestPlugIn.h +++ include/cppunit/plugin/TestPlugIn.h @@ -111,7 +111,7 @@ /*! \brief Type of the function exported by a plug-in. * \ingroup WritingTestPlugIn */ -typedef CppUnitTestPlugIn *(*TestPlugInSignature)(); +extern "C" { typedef CppUnitTestPlugIn *(*TestPlugInSignature)(); } /*! \brief Implements the function exported by the test plug-in >
summaryrefslogtreecommitdiff |
Age | Commit message (Expand) | Author |
---|---|---|
2021-05-02 | throw() -> noexcept, part 2/3: Automatic loplugin:noexcept rewrite | Stephan Bergmann | Rizal Muttaqin |