diff -r 4317d277ba21 -r 765619b7cbb2 lemon/bits/utility.h --- a/lemon/bits/utility.h Sun Jul 13 16:46:56 2008 +0100 +++ b/lemon/bits/utility.h Sun Jul 13 19:51:02 2008 +0100 @@ -1,6 +1,6 @@ -/* -*- C++ -*- +/* -*- mode: C++; indent-tabs-mode: nil; -*- * - * This file is a part of LEMON, a generic C++ optimization library + * This file is a part of LEMON, a generic C++ optimization library. * * Copyright (C) 2003-2008 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport @@ -83,13 +83,13 @@ template struct dummy { dummy(int) {} }; /**************** enable_if from BOOST ****************/ - + template struct exists { typedef T type; }; - + template struct enable_if_c { typedef T type; @@ -98,7 +98,7 @@ template struct enable_if_c {}; - template + template struct enable_if : public enable_if_c {}; template @@ -109,7 +109,7 @@ template struct lazy_enable_if_c {}; - template + template struct lazy_enable_if : public lazy_enable_if_c {}; @@ -121,7 +121,7 @@ template struct disable_if_c {}; - template + template struct disable_if : public disable_if_c {}; template @@ -132,7 +132,7 @@ template struct lazy_disable_if_c {}; - template + template struct lazy_disable_if : public lazy_disable_if_c {}; } // namespace lemon