4.7 C++ Transition Guide

I think you’re confused with ‘calling’ super like this:


AWaCharacterBase::AWaCharacterBase() : Super()
{
    //constructor code
}


This is what you’re supposed to do, it specifies which version of the superclass constructor should be called just before this constructor is run. If you are just using the superclass default constructor you don’t even need to do : Super(), since it does that by default.