diff options
author | Andrzej Rybczak <electricityispower@gmail.com> | 2012-10-02 16:19:04 +0200 |
---|---|---|
committer | Andrzej Rybczak <electricityispower@gmail.com> | 2012-10-02 16:19:04 +0200 |
commit | efe2a523829fbcc18b010022eee23610830f1cc5 (patch) | |
tree | 0b7e696f530d5bea704093640d978f168c48c3f9 /src/menu.h | |
parent | 592a156aaa65f5c130911753f7e524aa1e341e44 (diff) |
fix header guards
Diffstat (limited to 'src/menu.h')
-rw-r--r-- | src/menu.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -18,8 +18,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef _MENU_H -#define _MENU_H +#ifndef NCMPCPP_MENU_H +#define NCMPCPP_MENU_H #include <cassert> #include <functional> @@ -855,4 +855,4 @@ template <typename T> void Menu<T>::prevFound(bool wrap) } -#endif +#endif // NCMPCPP_MENU_H |