aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/pire/pire/stub/singleton.h
blob: f24e9244607cbe1dfd3eb01bb7400aa265b939ca (plain) (blame)
1
2
3
4
5
6
7
8
#pragma once
#include <util/generic/singleton.h>
namespace Pire {
    template<class T>
    const T& DefaultValue() {
	return Default<T>();
    }
}