X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ffeature.h;h=0dca1f524ed315cf681df464abd278a2da384879;hb=f0c0d720edc01f5faa72bb4ff4bf655445842678;hp=2ab2081ec213e4a9658fa4852de2d87017c71db5;hpb=aa053d637e8259755af7d2e4b510a242f4d29c7b;p=builder.git diff --git a/source/feature.h b/source/feature.h index 2ab2081..0dca1f5 100644 --- a/source/feature.h +++ b/source/feature.h @@ -16,11 +16,11 @@ struct Feature std::string name; std::string description; - std::string default_value; + std::string default_value = "no"; std::vector choices; - bool exported; + bool exported = false; - Feature(const std::string &); + Feature(const std::string &n): name(n) { } }; #endif