mirror of
https://github.com/OpenMW/openmw.git
synced 2025-11-28 08:34:34 +00:00
components/misc/helpviewer.hpp:1:1: error: avoid 'pragma once' directive; use include guards instead [portability-avoid-pragma-once,-warnings-as-errors]
1 | #pragma once
| ^
apps/opencs/view/world/tableheadermouseeventhandler.hpp:1:1: error: avoid 'pragma once' directive; use include guards instead [portability-avoid-pragma-once,-warnings-as-errors]
1 | #pragma once
| ^
12 lines
197 B
C++
12 lines
197 B
C++
#ifndef OPENMW_COMPONENTS_MISC_HELPVIEWER_HPP
|
|
#define OPENMW_COMPONENTS_MISC_HELPVIEWER_HPP
|
|
|
|
namespace Misc
|
|
{
|
|
namespace HelpViewer
|
|
{
|
|
void openHelp(const char* url);
|
|
}
|
|
}
|
|
|
|
#endif
|