From f6b51d6e7dcc4523cc039c63d5ad32ab413315b3 Mon Sep 17 00:00:00 2001
From: David Robillard <d@drobilla.net>
Date: Sat, 16 Apr 2011 19:02:36 +0000
Subject: Squeeze blank lines and delete trailing whitespace.

git-svn-id: http://svn.drobilla.net/lad/trunk/raul@3152 a436a847-0d15-0410-975c-d299462d15a1
---
 raul/List.hpp        | 2 +-
 raul/MIDISink.hpp    | 2 +-
 raul/PathTable.hpp   | 2 +-
 raul/Quantizer.hpp   | 2 +-
 raul/RingBuffer.hpp  | 2 +-
 raul/SMFReader.hpp   | 2 +-
 raul/SMFWriter.hpp   | 2 +-
 raul/Table.hpp       | 2 +-
 raul/TimeStamp.hpp   | 2 +-
 raul/URI.hpp         | 2 +-
 raul/log.hpp         | 2 +-
 test/thread_test.cpp | 4 ++--
 12 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/raul/List.hpp b/raul/List.hpp
index 64422a0..38b5c86 100644
--- a/raul/List.hpp
+++ b/raul/List.hpp
@@ -35,7 +35,7 @@ namespace Raul {
  * Elements can be added safely while another thread is reading the list.
  * Like a typical ringbuffer, this is single-reader single-writer threadsafe
  * only.  See documentation for specific functions for specifics.
- * \ingroup raul 
+ * \ingroup raul
  */
 template <typename T>
 class List : public Raul::Deletable, public boost::noncopyable
diff --git a/raul/MIDISink.hpp b/raul/MIDISink.hpp
index a1f6ab2..95cdfae 100644
--- a/raul/MIDISink.hpp
+++ b/raul/MIDISink.hpp
@@ -26,7 +26,7 @@ namespace Raul {
 
 
 /** Pure virtual base for anything you can write MIDI to.
- * \ingroup raul 
+ * \ingroup raul
  */
 class MIDISink : public Deletable {
 public:
diff --git a/raul/PathTable.hpp b/raul/PathTable.hpp
index 65fa681..b028205 100644
--- a/raul/PathTable.hpp
+++ b/raul/PathTable.hpp
@@ -24,7 +24,7 @@
 namespace Raul {
 
 /** Table of Paths.
- * \ingroup raul 
+ * \ingroup raul
  */
 template <typename T>
 class PathTable : public Table<Path, T> {
diff --git a/raul/Quantizer.hpp b/raul/Quantizer.hpp
index 4637bb4..5450b83 100644
--- a/raul/Quantizer.hpp
+++ b/raul/Quantizer.hpp
@@ -24,7 +24,7 @@
 namespace Raul {
 
 /** Quantizer.
- * \ingroup raul 
+ * \ingroup raul
  */
 class Quantizer {
 public:
diff --git a/raul/RingBuffer.hpp b/raul/RingBuffer.hpp
index f1b8081..bf449c3 100644
--- a/raul/RingBuffer.hpp
+++ b/raul/RingBuffer.hpp
@@ -35,7 +35,7 @@ namespace Raul {
 /** A lock-free RingBuffer.
  * Read/Write realtime safe.
  * Single-reader Single-writer thread safe.
- * \ingroup raul 
+ * \ingroup raul
  */
 class RingBuffer {
 public:
diff --git a/raul/SMFReader.hpp b/raul/SMFReader.hpp
index c7bf0ce..7a56b12 100644
--- a/raul/SMFReader.hpp
+++ b/raul/SMFReader.hpp
@@ -29,7 +29,7 @@ namespace Raul {
 /** Standard Midi File (Type 0) Reader
  *
  * Currently this only reads SMF files with tempo-based timing.
- * \ingroup raul 
+ * \ingroup raul
  */
 class SMFReader {
 public:
diff --git a/raul/SMFWriter.hpp b/raul/SMFWriter.hpp
index fe0f9ef..dcd6f9f 100644
--- a/raul/SMFWriter.hpp
+++ b/raul/SMFWriter.hpp
@@ -28,7 +28,7 @@ namespace Raul {
 
 
 /** Standard Midi File (Type 0) Writer
- * \ingroup raul 
+ * \ingroup raul
  */
 class SMFWriter : public Raul::MIDISink {
 public:
diff --git a/raul/Table.hpp b/raul/Table.hpp
index c22c346..cbcd87b 100644
--- a/raul/Table.hpp
+++ b/raul/Table.hpp
@@ -36,7 +36,7 @@ namespace Raul {
  * This has the advantage over std::map that iterating over the collection
  * is fast and sorted.  Possibly also faster in some situations due to all
  * data being in a single chunk of memory, cache optimized, etc.
- * \ingroup raul 
+ * \ingroup raul
  */
 template <typename K, typename T>
 class Table : public boost::noncopyable {
diff --git a/raul/TimeStamp.hpp b/raul/TimeStamp.hpp
index 16233f4..a6070cd 100644
--- a/raul/TimeStamp.hpp
+++ b/raul/TimeStamp.hpp
@@ -28,7 +28,7 @@ namespace Raul {
 
 
 /** A type of time stamp
- * \ingroup raul 
+ * \ingroup raul
  */
 class TimeUnit {
 public:
diff --git a/raul/URI.hpp b/raul/URI.hpp
index 8f4a8c2..0d3b94b 100644
--- a/raul/URI.hpp
+++ b/raul/URI.hpp
@@ -32,7 +32,7 @@ namespace Raul {
  *
  * This "should" be used for proper URIs (RFC3986), but not much support or
  * validation is built-in yet.  The URI string MUST have a scheme though.
- * \ingroup raul 
+ * \ingroup raul
  */
 class URI {
 public:
diff --git a/raul/log.hpp b/raul/log.hpp
index 6e6b81f..35221c5 100644
--- a/raul/log.hpp
+++ b/raul/log.hpp
@@ -25,7 +25,7 @@
 namespace Raul {
 
 /** Buffer for (possibly coloured) log printing.
- * \ingroup raul 
+ * \ingroup raul
  */
 class LogBuffer : public std::streambuf
 {
diff --git a/test/thread_test.cpp b/test/thread_test.cpp
index f8f50e4..03dbaa9 100644
--- a/test/thread_test.cpp
+++ b/test/thread_test.cpp
@@ -20,7 +20,7 @@ private:
 
 	Semaphore& _sem;
 };
-		
+
 int
 main()
 {
@@ -28,7 +28,7 @@ main()
 
 	Thread& this_thread = Thread::get();
 	this_thread.set_name("Main");
-	
+
 	Semaphore sem(0);
 	Waiter waiter(sem);
 	waiter.start();
-- 
cgit v1.2.1