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:
parent
93f9ab24bb
commit
098110bc5f
3 changed files with 9 additions and 0 deletions
|
|
@ -47,6 +47,9 @@ public:
|
|||
{
|
||||
NativeFunctionArgs (const var& thisObject, const var* args, int numArgs) noexcept;
|
||||
|
||||
// Suppress a VS2013 compiler warning
|
||||
NativeFunctionArgs& operator= (const NativeFunctionArgs&) = delete;
|
||||
|
||||
const var& thisObject;
|
||||
const var* arguments;
|
||||
int numArguments;
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue