~satchmo/libvmm#62: 
Replace copies and reassinments with ternary/lambdas

Something like this:

const std::string somevalue = [&](){
    if (caseA) {
        return "Value A";
    } else if (caseB) {
        return "Value B";
    } else {
        return "Value C";
    }
}();
Status
REPORTED
Submitter
~satchmo
Assigned to
No-one
Submitted
3 years ago
Updated
3 years ago
Labels
No labels applied.