Use enum class instead of old enum.

As we are relying on c++11x for other stuff too.
This commit is contained in:
Tiago Gomes
2013-03-09 15:39:39 +00:00
parent 7193d2238d
commit 532654baba
6 changed files with 19 additions and 19 deletions

View File

@@ -15,7 +15,7 @@ namespace Horus {
class ElimGraph {
public:
enum ElimHeuristic {
enum class ElimHeuristic {
sequentialEh,
minNeighborsEh,
minWeightEh,