Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Take A QuizChallenge yourself and boost your learning! Start the quiz now to earn credits.
Take A QuizUnlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
Take A QuizPlease log in to access this content. You will be redirected to the login page shortly.
LoginGeneral Tech Bugs & Fixes 3 years ago
User submissions are the sole responsibility of contributors, with TuteeHUB disclaiming liability for accuracy, copyrights, or consequences of use; content is for informational purposes only and not professional advice.
That's definitely a false positive. Your delegating constructor does indeed invoke another constructor which initializes both fields. However, I would consider just using a default initializer for _data in general anyways:
template<typename T>
class A
{
public:
explicit A(std::size_t size) :
data_size_(size)
{
// …
}
explicit A(const std::vector<T>& b) :
A(b.size())
{
// …
}
private:
T* data_ = nullptr;
std::size_t data_size_;
};
as that makes it even harder for anyone adding another constructor to forget to initialize data_. Unless, of course, there are some cases in which the member should remain uninitialized…
Also, note that the const on your const std::size_t size parameter in the first constructor of A is quite pointless.
No matter what stage you're at in your education or career, TuteeHUB will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
Please log in to access this content. You will be redirected to the login page shortly.
Login
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.
Your experience on this site will be improved by allowing cookies. Read Cookie Policy
Your experience on this site will be improved by allowing cookies. Read Cookie Policy
manpreet
Best Answer
3 years ago
I'm running clang-tidy 8.0 and I am getting the warning:
constructor does not initialize these fields:when using a delegating constructor on a templated class. I want to know if this is a false positive I should suppress, or if indeed my code is wrong.
The example code in question is this:
When running clang-tidy on this code:
clang-tidy-8 --checks=* test.cppI get, among other things:
However, if I remove the template from the class and make it a normal class, then I don't get such error.
Is there something I'm missing when using delegating constructors on a templated class, or is this a bug in clang-tidy?
Thanks!