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

Added some missing override keywords

This commit is contained in:
ed 2018-09-03 10:54:16 +01:00
parent 06abfc16ce
commit ba85dd7a05
9 changed files with 32 additions and 32 deletions

View file

@ -45,9 +45,9 @@ public:
/** Destructor. */
~FileInputSource();
InputStream* createInputStream();
InputStream* createInputStreamFor (const String& relatedItemPath);
int64 hashCode() const;
InputStream* createInputStream() override;
InputStream* createInputStreamFor (const String& relatedItemPath) override;
int64 hashCode() const override;
private:
//==============================================================================

View file

@ -47,9 +47,9 @@ public:
/** Destructor. */
~URLInputSource();
InputStream* createInputStream();
InputStream* createInputStreamFor (const String& relatedItemPath);
int64 hashCode() const;
InputStream* createInputStream() override;
InputStream* createInputStreamFor (const String& relatedItemPath) override;
int64 hashCode() const override;
private:
//==============================================================================