fix up file renaming code a little bit
[ardour.git] / libs / ardour / ardour / cycle_timer.h
index 4e1a50e6026b09217fa0e86d9b32f5e888e80b90..146b393a6367399e23a124c1c1c02e698e68b2b9 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2002 Paul Davis 
+    Copyright (C) 2002 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -23,7 +23,7 @@
 #include <string>
 #include <iostream>
 
-#include <ardour/cycles.h>
+#include "ardour/cycles.h"
 
 class CycleTimer {
   private:
@@ -31,7 +31,7 @@ class CycleTimer {
        cycles_t _entry;
        cycles_t _exit;
        std::string _name;
-       
+
   public:
        CycleTimer(std::string name) : _name (name){
                if (cycles_per_usec == 0) {
@@ -41,7 +41,7 @@ class CycleTimer {
        }
        ~CycleTimer() {
                _exit = get_cycles();
-               std::cerr << _name << ": " << (float) (_exit - _entry) / cycles_per_usec << " (" <<  _entry << ", " << _exit << ')' << endl;
+               std::cerr << _name << ": " << (float) (_exit - _entry) / cycles_per_usec << " (" <<  _entry << ", " << _exit << ')' << std::endl;
        }
 
        static float get_mhz ();