]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/skyline-pair.cc
Fix 380: Try to auto-detect cyclic references in header fields
[lilypond.git] / lily / skyline-pair.cc
index 92b25577a28c8e77e76a4b38b06652deec3381fb..2a3b26ff9e81a0512268b639c2a236d547fdcf70 100644 (file)
@@ -1,8 +1,8 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2008--2010 Han-Wen Nienhuys <hanwen@lilypond.org>
-  
+  Copyright (C) 2008--2011 Han-Wen Nienhuys <hanwen@lilypond.org>
+
 
   LilyPond is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -79,21 +79,20 @@ Skyline_pair::print_points () const
   skylines_[DOWN].print ();
 }
 
-
 bool
 Skyline_pair::is_empty () const
 {
   return skylines_[UP].is_empty ()
-    && skylines_[DOWN].is_empty ();
+         && skylines_[DOWN].is_empty ();
 }
 
-Skyline&
+Skyline &
 Skyline_pair::operator [] (Direction d)
 {
   return skylines_[d];
 }
 
-Skyline const&
+Skyline const &
 Skyline_pair::operator [] (Direction d) const
 {
   return skylines_[d];