Replace boost::scoped_ptr with std::unique_ptr.
[cumulus.git] / ref.h
diff --git a/ref.h b/ref.h
index a27b4d6..bbbf5b8 100644 (file)
--- a/ref.h
+++ b/ref.h
@@ -1,7 +1,6 @@
-/* Cumulus: Smart Filesystem Backup to Dumb Servers
- *
- * Copyright (C) 2007-2008  The Regents of the University of California
- * Written by Michael Vrable <mvrable@cs.ucsd.edu>
+/* Cumulus: Efficient Filesystem Backup to the Cloud
+ * Copyright (C) 2007-2008 The Cumulus Developers
+ * See the AUTHORS file for a list of contributors.
  *
  * 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
@@ -111,7 +110,7 @@ public:
     bool has_range() const { return range_valid; }
     size_t get_range_start() const { return range_start; }
     size_t get_range_length() const { return range_length; }
-    size_t get_range_exact() const { return range_exact; }
+    bool range_is_exact() const { return range_exact; }
     void clear_range()
         { range_start = range_length = 0;
           range_valid = false; range_exact = false; }