1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-29 02:40:05 +00:00

Converted some old typedefs to using declarations

This commit is contained in:
jules 2018-05-02 20:15:33 +01:00
parent 88071b29e6
commit 38295f332b
69 changed files with 392 additions and 411 deletions

View file

@ -30,7 +30,7 @@ namespace juce
class ValueTree::SharedObject : public ReferenceCountedObject
{
public:
typedef ReferenceCountedObjectPtr<SharedObject> Ptr;
using Ptr = ReferenceCountedObjectPtr<SharedObject>;
explicit SharedObject (const Identifier& t) noexcept : type (t) {}