summaryrefslogtreecommitdiff
path: root/libs/audiographer
diff options
context:
space:
mode:
authorJohn Emmas <johne53@tiscali.co.uk>2016-03-12 13:59:44 +0000
committerJohn Emmas <johne53@tiscali.co.uk>2016-03-12 13:59:44 +0000
commitf00342b2d83b74aa248ba74a338fa54124537823 (patch)
treee52979a19464609596e78cd27be9c3b250c36a7c /libs/audiographer
parentaf44e0e0510a5284a2b85208840a6bda449cfb21 (diff)
Some AudioGrapher classes need to be exportable now, to support newly introduced 'AnalysisGraph' class
(not entirely sure why - but it might be because 'ProcessContext<Sample>' is now used in multiple sources within libardour).
Diffstat (limited to 'libs/audiographer')
-rw-r--r--libs/audiographer/audiographer/flag_debuggable.h2
-rw-r--r--libs/audiographer/audiographer/throwing.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/libs/audiographer/audiographer/flag_debuggable.h b/libs/audiographer/audiographer/flag_debuggable.h
index f5d4fbf6ed..5816fe8243 100644
--- a/libs/audiographer/audiographer/flag_debuggable.h
+++ b/libs/audiographer/audiographer/flag_debuggable.h
@@ -14,7 +14,7 @@ namespace AudioGrapher
/// A debugging class for nodes that support a certain set of flags.
template<DebugLevel L = DEFAULT_DEBUG_LEVEL>
-class /*LIBAUDIOGRAPHER_API*/ FlagDebuggable : public Debuggable<L>
+class LIBAUDIOGRAPHER_API FlagDebuggable : public Debuggable<L>
{
public:
typedef FlagField::Flag Flag;
diff --git a/libs/audiographer/audiographer/throwing.h b/libs/audiographer/audiographer/throwing.h
index 8bd8415560..0d8c2a89fb 100644
--- a/libs/audiographer/audiographer/throwing.h
+++ b/libs/audiographer/audiographer/throwing.h
@@ -40,7 +40,7 @@ enum /*LIBAUDIOGRAPHER_API*/ ThrowLevel
* logical and (short-circuiting).
*/
template<ThrowLevel L = DEFAULT_THROW_LEVEL>
-class /*LIBAUDIOGRAPHER_API*/ Throwing
+class LIBAUDIOGRAPHER_API Throwing
{
protected:
Throwing() {}