https://svn.lrde.epita.fr/svn/oln/trunk/metalic
Index: ChangeLog
from Roland Levillain <roland(a)lrde.epita.fr>
* mlc/abstract/type.hh, mlc/abstract/bexpr.hh,
* mlc/abort.hh, mlc/assert.hh, mlc/bexpr.hh, mlc/bool.hh,
* mlc/case.hh, mlc/char.hh, mlc/cmp.hh, mlc/comma.hh,
* mlc/contract.hh, mlc/elt.hh, mlc/flags.hh, mlc/if.hh,
* mlc/implies.hh, mlc/int.hh, mlc/is_a.hh, mlc/logic.hh,
* mlc/pair.hh, mlc/ret.hh, mlc/switch.hh, mlc/to_string.hh,
* mlc/typedef.hh, mlc/uint.hh, mlc/valist.hh, mlc/value.hh,
* mlc/values.hh, mlc/wrap.hh: Adjust header guards to match
the file name.
abort.hh | 6 +++---
abstract/bexpr.hh | 6 +++---
abstract/type.hh | 6 +++---
assert.hh | 6 +++---
bexpr.hh | 6 +++---
bool.hh | 6 +++---
case.hh | 6 +++---
char.hh | 6 +++---
cmp.hh | 6 +++---
comma.hh | 6 +++---
contract.hh | 6 +++---
elt.hh | 6 +++---
flags.hh | 6 +++---
if.hh | 6 +++---
implies.hh | 6 +++---
int.hh | 6 +++---
is_a.hh | 6 +++---
logic.hh | 6 +++---
pair.hh | 6 +++---
ret.hh | 6 +++---
switch.hh | 6 +++---
to_string.hh | 6 +++---
typedef.hh | 6 +++---
uint.hh | 6 +++---
valist.hh | 6 +++---
value.hh | 6 +++---
values.hh | 6 +++---
wrap.hh | 6 +++---
28 files changed, 84 insertions(+), 84 deletions(-)
Index: mlc/elt.hh
--- mlc/elt.hh (revision 586)
+++ mlc/elt.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_ELT_HH
-# define METALIC_ELT_HH
+#ifndef MLC_ELT_HH
+# define MLC_ELT_HH
# define mlc_elt(Type, Index) typename Type::template elt< Index >::ret
@@ -35,4 +35,4 @@
-#endif // ! METALIC_ELT_HH
+#endif // ! MLC_ELT_HH
Index: mlc/ret.hh
--- mlc/ret.hh (revision 586)
+++ mlc/ret.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_RET_HH
-# define METALIC_RET_HH
+#ifndef MLC_RET_HH
+# define MLC_RET_HH
# include <mlc/typedef.hh>
# include <mlc/cmp.hh>
@@ -79,4 +79,4 @@
-#endif // ! METALIC_RET_HH
+#endif // ! MLC_RET_HH
Index: mlc/int.hh
--- mlc/int.hh (revision 586)
+++ mlc/int.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_INT_HH
-# define METALIC_INT_HH
+#ifndef MLC_INT_HH
+# define MLC_INT_HH
# include <mlc/value.hh>
@@ -85,4 +85,4 @@
-#endif // ! METALIC_INT_HH
+#endif // ! MLC_INT_HH
Index: mlc/pair.hh
--- mlc/pair.hh (revision 586)
+++ mlc/pair.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_PAIR_HH
-# define METALIC_PAIR_HH
+#ifndef MLC_PAIR_HH
+# define MLC_PAIR_HH
# include <mlc/assert.hh>
# include <mlc/logic.hh>
@@ -107,4 +107,4 @@
-#endif // ! METALIC_PAIR_HH
+#endif // ! MLC_PAIR_HH
Index: mlc/bool.hh
--- mlc/bool.hh (revision 586)
+++ mlc/bool.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_BOOL_HH
-# define METALIC_BOOL_HH
+#ifndef MLC_BOOL_HH
+# define MLC_BOOL_HH
# include <mlc/value.hh>
# include <mlc/bexpr.hh>
@@ -100,4 +100,4 @@
} // end of namespace mlc
-#endif // ! METALIC_BOOL_HH
+#endif // ! MLC_BOOL_HH
Index: mlc/flags.hh
--- mlc/flags.hh (revision 586)
+++ mlc/flags.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_FLAGS_HH
-# define METALIC_FLAGS_HH
+#ifndef MLC_FLAGS_HH
+# define MLC_FLAGS_HH
# include <mlc/abstract/type.hh>
@@ -213,4 +213,4 @@
} // end of namespace mlc
-#endif // ! METALIC_FLAGS_HH
+#endif // ! MLC_FLAGS_HH
Index: mlc/comma.hh
--- mlc/comma.hh (revision 586)
+++ mlc/comma.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_COMMA_HH
-# define METALIC_COMMA_HH
+#ifndef MLC_COMMA_HH
+# define MLC_COMMA_HH
// FIXME: doc
@@ -37,4 +37,4 @@
# define mlc_comma_4(a, b, c, d, e) a, b, c, d, e
-#endif // ! METALIC_COMMA_HH
+#endif // ! MLC_COMMA_HH
Index: mlc/logic.hh
--- mlc/logic.hh (revision 586)
+++ mlc/logic.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_LOGIC_HH
-# define METALIC_LOGIC_HH
+#ifndef MLC_LOGIC_HH
+# define MLC_LOGIC_HH
# include <mlc/bexpr.hh>
# include <mlc/assert.hh>
@@ -432,4 +432,4 @@
} // end of namespace mlc
-#endif // ! METALIC_LOGIC_HH
+#endif // ! MLC_LOGIC_HH
Index: mlc/if.hh
--- mlc/if.hh (revision 586)
+++ mlc/if.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_IF_HH
-# define METALIC_IF_HH
+#ifndef MLC_IF_HH
+# define MLC_IF_HH
# include <mlc/bexpr.hh>
# include <mlc/assert.hh>
@@ -108,4 +108,4 @@
} // end of namespace mlc
-#endif // ! METALIC_IF_HH
+#endif // ! MLC_IF_HH
Index: mlc/values.hh
--- mlc/values.hh (revision 586)
+++ mlc/values.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_VALUES_HH
-# define METALIC_VALUES_HH
+#ifndef MLC_VALUES_HH
+# define MLC_VALUES_HH
@@ -46,4 +46,4 @@
-#endif // ! METALIC_VALUES_HH
+#endif // ! MLC_VALUES_HH
Index: mlc/typedef.hh
--- mlc/typedef.hh (revision 586)
+++ mlc/typedef.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_TYPEDEF_HH
-# define METALIC_TYPEDEF_HH
+#ifndef MLC_TYPEDEF_HH
+# define MLC_TYPEDEF_HH
# include <mlc/flags.hh>
# include <mlc/bool.hh>
@@ -278,4 +278,4 @@
typedef_::TypedefName::from_onlyif_< Type, mlc_bool(Bexpr) >::ret
-#endif // ! METALIC_TYPEDEF_HH
+#endif // ! MLC_TYPEDEF_HH
Index: mlc/assert.hh
--- mlc/assert.hh (revision 586)
+++ mlc/assert.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_ASSERT_HH
-# define METALIC_ASSERT_HH
+#ifndef MLC_ASSERT_HH
+# define MLC_ASSERT_HH
# include <mlc/flags.hh>
@@ -256,4 +256,4 @@
} // end of namespace mlc
-#endif // ! METALIC_ASSERT_HH
+#endif // ! MLC_ASSERT_HH
Index: mlc/switch.hh
--- mlc/switch.hh (revision 586)
+++ mlc/switch.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_SWITCH_HH
-# define METALIC_SWITCH_HH
+#ifndef MLC_SWITCH_HH
+# define MLC_SWITCH_HH
# include <mlc/case.hh>
@@ -44,4 +44,4 @@
/// \}
-#endif // ! METALIC_SWITCH_HH
+#endif // ! MLC_SWITCH_HH
Index: mlc/valist.hh
--- mlc/valist.hh (revision 586)
+++ mlc/valist.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_VALIST_HH
-# define METALIC_VALIST_HH
+#ifndef MLC_VALIST_HH
+# define MLC_VALIST_HH
# include <mlc/assert.hh>
# include <mlc/cmp.hh>
@@ -181,4 +181,4 @@
-#endif // ! METALIC_VALIST_HH
+#endif // ! MLC_VALIST_HH
Index: mlc/implies.hh
--- mlc/implies.hh (revision 586)
+++ mlc/implies.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_IMPLIES_HH
-# define METALIC_IMPLIES_HH
+#ifndef MLC_IMPLIES_HH
+# define MLC_IMPLIES_HH
# include <mlc/bexpr.hh>
# include <mlc/assert.hh>
@@ -81,4 +81,4 @@
-#endif // ! METALIC_IMPLIES_HH
+#endif // ! MLC_IMPLIES_HH
Index: mlc/abstract/type.hh
--- mlc/abstract/type.hh (revision 586)
+++ mlc/abstract/type.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_ABSTRACT_TYPE_HH
-# define METALIC_ABSTRACT_TYPE_HH
+#ifndef MLC_ABSTRACT_TYPE_HH
+# define MLC_ABSTRACT_TYPE_HH
namespace mlc {
@@ -58,4 +58,4 @@
} // end of namespace mlc
-#endif // ! METALIC_ABSTRACT_TYPE_HH
+#endif // ! MLC_ABSTRACT_TYPE_HH
Index: mlc/abstract/bexpr.hh
--- mlc/abstract/bexpr.hh (revision 586)
+++ mlc/abstract/bexpr.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_ABSTRACT_BEXPR_HH
-# define METALIC_ABSTRACT_BEXPR_HH
+#ifndef MLC_ABSTRACT_BEXPR_HH
+# define MLC_ABSTRACT_BEXPR_HH
# include <mlc/abstract/type.hh>
# include <mlc/flags.hh>
@@ -62,4 +62,4 @@
-#endif // ! METALIC_ABSTRACT_BEXPR_HH
+#endif // ! MLC_ABSTRACT_BEXPR_HH
Index: mlc/abort.hh
--- mlc/abort.hh (revision 586)
+++ mlc/abort.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_ABORT_HH
-# define METALIC_ABORT_HH
+#ifndef MLC_ABORT_HH
+# define MLC_ABORT_HH
# include <mlc/bexpr.hh>
# include <mlc/assert.hh>
@@ -117,4 +117,4 @@
} // end of namespace mlc
-#endif // ! METALIC_ABORT_HH
+#endif // ! MLC_ABORT_HH
Index: mlc/to_string.hh
--- mlc/to_string.hh (revision 586)
+++ mlc/to_string.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_TO_STRING_HH
-# define METALIC_TO_STRING_HH
+#ifndef MLC_TO_STRING_HH
+# define MLC_TO_STRING_HH
# include <iostream>
# include <string>
@@ -66,4 +66,4 @@
-#endif // ! METALIC_TO_STRING_HH
+#endif // ! MLC_TO_STRING_HH
Index: mlc/wrap.hh
--- mlc/wrap.hh (revision 586)
+++ mlc/wrap.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_WRAP_HH
-# define METALIC_WRAP_HH
+#ifndef MLC_WRAP_HH
+# define MLC_WRAP_HH
namespace mlc
@@ -123,4 +123,4 @@
*/
-#endif // ! METALIC_WRAP_HH
+#endif // ! MLC_WRAP_HH
Index: mlc/is_a.hh
--- mlc/is_a.hh (revision 586)
+++ mlc/is_a.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_IS_A_HH
-# define METALIC_IS_A_HH
+#ifndef MLC_IS_A_HH
+# define MLC_IS_A_HH
# include <mlc/bool.hh>
# include <mlc/bexpr.hh>
@@ -264,4 +264,4 @@
mlc::not_< mlc::is_a_< sizeof(mlc::form::of<U >())>::ret< T, U >
>
-#endif // ! METALIC_IS_A_HH
+#endif // ! MLC_IS_A_HH
Index: mlc/case.hh
--- mlc/case.hh (revision 586)
+++ mlc/case.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_CASE_HH
-# define METALIC_CASE_HH
+#ifndef MLC_CASE_HH
+# define MLC_CASE_HH
# include <mlc/bexpr.hh>
# include <mlc/assert.hh>
@@ -430,4 +430,4 @@
-#endif // ! METALIC_CASE_HH
+#endif // ! MLC_CASE_HH
Index: mlc/value.hh
--- mlc/value.hh (revision 586)
+++ mlc/value.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_VALUE_HH
-# define METALIC_VALUE_HH
+#ifndef MLC_VALUE_HH
+# define MLC_VALUE_HH
# include <mlc/abstract/type.hh>
// # include <mlc/assert.hh>
@@ -90,4 +90,4 @@
-#endif // ! METALIC_VALUE_HH
+#endif // ! MLC_VALUE_HH
Index: mlc/char.hh
--- mlc/char.hh (revision 586)
+++ mlc/char.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_CHAR_HH
-# define METALIC_CHAR_HH
+#ifndef MLC_CHAR_HH
+# define MLC_CHAR_HH
# include <mlc/value.hh>
@@ -48,4 +48,4 @@
} // end of namespace mlc
-#endif // ! METALIC_CHAR_HH
+#endif // ! MLC_CHAR_HH
Index: mlc/contract.hh
--- mlc/contract.hh (revision 586)
+++ mlc/contract.hh (working copy)
@@ -26,8 +26,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_CONTRACT_HH
-# define METALIC_CONTRACT_HH
+#ifndef MLC_CONTRACT_HH
+# define MLC_CONTRACT_HH
# include <cassert>
@@ -60,4 +60,4 @@
} \
struct e_n_d__w_i_t_h__s_e_m_i_c_o_l_o_n
-#endif // ! METALIC_CONTRACT_HH
+#endif // ! MLC_CONTRACT_HH
Index: mlc/uint.hh
--- mlc/uint.hh (revision 586)
+++ mlc/uint.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_UINT_HH
-# define METALIC_UINT_HH
+#ifndef MLC_UINT_HH
+# define MLC_UINT_HH
# include <mlc/bool.hh>
@@ -65,4 +65,4 @@
-#endif // ! METALIC_UINT_HH
+#endif // ! MLC_UINT_HH
Index: mlc/cmp.hh
--- mlc/cmp.hh (revision 586)
+++ mlc/cmp.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_CMP_HH
-# define METALIC_CMP_HH
+#ifndef MLC_CMP_HH
+# define MLC_CMP_HH
# include <mlc/bexpr.hh>
# include <mlc/is_a.hh>
@@ -249,4 +249,4 @@
} // end of namespace mlc
-#endif // ! METALIC_CMP_HH
+#endif // ! MLC_CMP_HH
Index: mlc/bexpr.hh
--- mlc/bexpr.hh (revision 586)
+++ mlc/bexpr.hh (working copy)
@@ -25,8 +25,8 @@
// reasons why the executable file might be covered by the GNU General
// Public License.
-#ifndef METALIC_BEXPR_HH
-# define METALIC_BEXPR_HH
+#ifndef MLC_BEXPR_HH
+# define MLC_BEXPR_HH
# include <mlc/abstract/bexpr.hh>
# include <mlc/flags.hh>
@@ -157,4 +157,4 @@
-#endif // ! METALIC_BEXPR_HH
+#endif // ! MLC_BEXPR_HH