~satchmo/libvmm#61: 
Replace macros

Either use enums or classes:

namespace vmm::kvm {

enum class Constants {
    MAX_MSRS{...}
};

struct Constants {
    static constexpr auto MAX_MSRS = ...;
};

}
Status
REPORTED
Submitter
~satchmo
Assigned to
No-one
Submitted
3 years ago
Updated
3 years ago
Labels
No labels applied.