1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-11-28 08:34:34 +00:00
openmw/components/misc/helpviewer.hpp
elsid feb9cc004c
Fix portability-avoid-pragma-once warnings
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
      | ^
2025-11-25 21:16:50 +01:00

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