summaryrefslogtreecommitdiff
path: root/libs/audiographer/audiographer
diff options
context:
space:
mode:
Diffstat (limited to 'libs/audiographer/audiographer')
-rw-r--r--libs/audiographer/audiographer/debuggable.h2
-rw-r--r--libs/audiographer/audiographer/general/interleaver.h6
-rw-r--r--libs/audiographer/audiographer/general/sample_format_converter.h2
-rw-r--r--libs/audiographer/audiographer/throwing.h2
-rw-r--r--libs/audiographer/audiographer/type_utils.h2
-rw-r--r--libs/audiographer/audiographer/visibility.h2
6 files changed, 8 insertions, 8 deletions
diff --git a/libs/audiographer/audiographer/debuggable.h b/libs/audiographer/audiographer/debuggable.h
index 1cc1d6f725..6ca544a87e 100644
--- a/libs/audiographer/audiographer/debuggable.h
+++ b/libs/audiographer/audiographer/debuggable.h
@@ -24,7 +24,7 @@ enum LIBAUDIOGRAPHER_API DebugLevel
};
/** Class that allows optimizing out debugging code during compile time.
- * Usage: to take all advantage of this class you should wrap all
+ * Usage: to take all advantage of this class you should wrap all
* debugging statemets like this:
* \code
* if (debug_level (SomeDebugLevel) && other_optional_conditionals) {
diff --git a/libs/audiographer/audiographer/general/interleaver.h b/libs/audiographer/audiographer/general/interleaver.h
index fe174c9fcb..2bc62e5443 100644
--- a/libs/audiographer/audiographer/general/interleaver.h
+++ b/libs/audiographer/audiographer/general/interleaver.h
@@ -20,7 +20,7 @@ class /*LIBAUDIOGRAPHER_API*/ Interleaver
: public ListedSource<T>
, public Throwing<>
{
- public:
+ public:
/// Constructs an interleaver \n RT safe
Interleaver()
@@ -57,8 +57,8 @@ class /*LIBAUDIOGRAPHER_API*/ Interleaver
return boost::static_pointer_cast<Sink<T> > (inputs[channel]);
}
- private:
-
+ private:
+
class Input : public Sink<T>
{
public:
diff --git a/libs/audiographer/audiographer/general/sample_format_converter.h b/libs/audiographer/audiographer/general/sample_format_converter.h
index b2efc69cab..af30ac1605 100644
--- a/libs/audiographer/audiographer/general/sample_format_converter.h
+++ b/libs/audiographer/audiographer/general/sample_format_converter.h
@@ -19,7 +19,7 @@ enum /*LIBAUDIOGRAPHER_API*/ DitherType
};
/** Sample format converter that does dithering.
- * This class can only convert floats to either \a float, \a int32_t, \a int16_t, or \a uint8_t
+ * This class can only convert floats to either \a float, \a int32_t, \a int16_t, or \a uint8_t
*/
template <typename TOut>
class LIBAUDIOGRAPHER_API SampleFormatConverter
diff --git a/libs/audiographer/audiographer/throwing.h b/libs/audiographer/audiographer/throwing.h
index ecf7aecd49..8bd8415560 100644
--- a/libs/audiographer/audiographer/throwing.h
+++ b/libs/audiographer/audiographer/throwing.h
@@ -26,7 +26,7 @@ enum /*LIBAUDIOGRAPHER_API*/ ThrowLevel
};
/** Class that allows optimizing out error checking during compile time.
- * Usage: to take all advantage of this class you should wrap all
+ * Usage: to take all advantage of this class you should wrap all
* throwing statemets like this:
* \code
* if (throw_level (SomeThrowLevel) && other_optional_conditionals) {
diff --git a/libs/audiographer/audiographer/type_utils.h b/libs/audiographer/audiographer/type_utils.h
index 7245822e26..e86fbcc282 100644
--- a/libs/audiographer/audiographer/type_utils.h
+++ b/libs/audiographer/audiographer/type_utils.h
@@ -33,7 +33,7 @@ class /*LIBAUDIOGRAPHER_API*/ TypeUtils : private TypeUtilsBase
{
BOOST_STATIC_ASSERT (boost::has_trivial_destructor<T>::value);
- typedef boost::integral_constant<bool,
+ typedef boost::integral_constant<bool,
boost::is_floating_point<T>::value ||
boost::is_signed<T>::value> zero_fillable;
public:
diff --git a/libs/audiographer/audiographer/visibility.h b/libs/audiographer/audiographer/visibility.h
index 31a7511f8b..8581f518e9 100644
--- a/libs/audiographer/audiographer/visibility.h
+++ b/libs/audiographer/audiographer/visibility.h
@@ -38,7 +38,7 @@
#define LIBAUDIOGRAPHER_API LIBAUDIOGRAPHER_DLL_EXPORT
#else
#define LIBAUDIOGRAPHER_API LIBAUDIOGRAPHER_DLL_IMPORT
- #endif
+ #endif
#define LIBAUDIOGRAPHER_LOCAL LIBAUDIOGRAPHER_DLL_LOCAL
#endif