Skip to content

Commit 376cc35

Browse files
authored
Merge branch 'master' into feature/basic-app-install-flow
2 parents 159cd5f + 70dc5a8 commit 376cc35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/support/static_support_smart_ptr.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ template <class T>
5454
class CheckedGlobalInstanceReference
5555
{
5656
public:
57-
CheckedGlobalInstanceReference<T>() = default;
57+
CheckedGlobalInstanceReference() = default;
5858
CheckedGlobalInstanceReference(T * e) { VerifyOrDie(e == GlobalInstanceProvider<T>::InstancePointer()); }
5959
CheckedGlobalInstanceReference & operator=(T * value)
6060
{
@@ -89,7 +89,7 @@ template <class T>
8989
class SimpleInstanceReference
9090
{
9191
public:
92-
SimpleInstanceReference<T>() = default;
92+
SimpleInstanceReference() = default;
9393
SimpleInstanceReference(T * e) : mValue(e) {}
9494
SimpleInstanceReference & operator=(T * value)
9595
{

0 commit comments

Comments
 (0)