mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-01 03:10:06 +00:00
Minor code clean-ups.
This commit is contained in:
parent
9f201da3c5
commit
08eb852103
289 changed files with 779 additions and 780 deletions
|
|
@ -81,7 +81,7 @@ URL::URL (const URL& other)
|
|||
{
|
||||
}
|
||||
|
||||
const URL& URL::operator= (const URL& other)
|
||||
URL& URL::operator= (const URL& other)
|
||||
{
|
||||
url = other.url;
|
||||
postData = other.postData;
|
||||
|
|
@ -443,7 +443,7 @@ private:
|
|||
}
|
||||
|
||||
WebInputStream (const WebInputStream&);
|
||||
const WebInputStream& operator= (const WebInputStream&);
|
||||
WebInputStream& operator= (const WebInputStream&);
|
||||
};
|
||||
|
||||
InputStream* URL::createInputStream (const bool usePostCommand,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue