Added copyright lines for files I've edited this year.
[synfig.git] / synfig-core / trunk / src / synfig / renddesc.h
index 199cc3c..9b714d1 100644 (file)
@@ -6,6 +6,7 @@
 **
 **     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
+**     Copyright (c) 2008 Chris Moore
 **
 **     This package is free software; you can redistribute it and/or
 **     modify it under the terms of the GNU General Public License as
@@ -303,14 +304,15 @@ inline RendDesc::Lock operator~(RendDesc::Lock rhs)
        return static_cast<RendDesc::Lock>(~(int)rhs);
 }
 
+//! \todo This code isn't used - so how are flags checked?  Using the FLAGS macro from color.h?
 //! This operator is for checking RendDesc::Lock flags.
 /*! Don't think of it as "less then or equal to", but think of it
 **     like an arrow. Is \a rhs inside of \a lhs ?
 **     \see RendDesc::Lock, RendDesc */
-inline bool operator<=(RendDesc::Lock lhs, RendDesc::Lock rhs)
-{
-       return static_cast<int>(lhs) & static_cast<int>(rhs)==static_cast<int>(rhs);
-}
+// inline bool operator<=(RendDesc::Lock lhs, RendDesc::Lock rhs)
+// {
+//     return (static_cast<int>(lhs) & static_cast<int>(rhs)) == static_cast<int>(rhs);
+// }
 
 
 }; /* end namespace synfig */