1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Suppressed a VS2013 assignment operator compiler warning

This commit is contained in:
tpoole 2017-05-04 09:54:52 +01:00
parent 93f9ab24bb
commit 098110bc5f
3 changed files with 9 additions and 0 deletions

View file

@ -28,6 +28,9 @@ struct MarkerListScope : public Expression::Scope
{
MarkerListScope (Component& comp) : component (comp) {}
// Suppress a VS2013 compiler warning
MarkerListScope& operator= (const MarkerListScope&) = delete;
Expression getSymbolValue (const String& symbol) const override
{
switch (RelativeCoordinate::StandardStrings::getTypeOf (symbol))

View file

@ -58,6 +58,9 @@ public:
public:
ComponentScope (Component&);
// Suppress a VS2013 compiler warning
ComponentScope& operator= (const ComponentScope&) = delete;
Expression getSymbolValue (const String& symbol) const;
void visitRelativeScope (const String& scopeName, Visitor&) const;
String getScopeUID() const;