summaryrefslogtreecommitdiff
path: root/utils/verbose.h
blob: e39e23cb8a4cc8b318b3d7d1efcde8f0dd2ef492 (plain)
1
2
3
4
5
6
7
8
#ifndef VERBOSE_H_
#define VERBOSE_H_

extern bool SILENT;

inline void SetSilent(bool s) { SILENT = s; }

#endif