mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-14 00:14:18 +00:00
Removed a minor compiler warning in VC7.
This commit is contained in:
parent
0744c0db37
commit
cff178cfaa
3 changed files with 3 additions and 3 deletions
|
|
@ -10769,7 +10769,7 @@ public:
|
|||
a = (uint8) (a * multiplier);
|
||||
}
|
||||
|
||||
forcedinline void setARGB (const uint8 a_, const uint8 r, const uint8 g, const uint8 b) throw()
|
||||
forcedinline void setARGB (const uint8 a_, const uint8 /*r*/, const uint8 /*g*/, const uint8 /*b*/) throw()
|
||||
{
|
||||
a = a_;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -527,7 +527,7 @@ public:
|
|||
}
|
||||
|
||||
/** Sets the pixel's colour from individual components. */
|
||||
forcedinline void setARGB (const uint8 a_, const uint8 r, const uint8 g, const uint8 b) throw()
|
||||
forcedinline void setARGB (const uint8 a_, const uint8 /*r*/, const uint8 /*g*/, const uint8 /*b*/) throw()
|
||||
{
|
||||
a = a_;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -151,7 +151,7 @@ private:
|
|||
File temporaryFile, targetFile;
|
||||
|
||||
void createTempFile (const File& parentDirectory, String name, const String& suffix, const int optionFlags);
|
||||
|
||||
|
||||
TemporaryFile (const TemporaryFile&);
|
||||
const TemporaryFile& operator= (const TemporaryFile&);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue