Tagged Questions
4
votes
2answers
474 views
Google Test - Constructor declaration error
I am trying to create a test fixture class from a normal class with constructor declaration (with arguments) as shown below:
hello.h
class hello
{
public:
hello(const uint32_t argID, const uint8_t ...
1
vote
8answers
576 views
Is it correct to use declaration only for empty private constructors in C++?
For example is this correct:
class C
{
private:
C();
C(const & C other);
}
or you should rather provide definition(s):
class C
{
private:
C() {};
C(const & C ...