1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-04-24 06:54:14 +02:00

Revert "Replace header guards with #pragma once"

This reverts commit a6bc896e24.
This commit is contained in:
Emily Mabrey
2021-08-24 16:57:24 -04:00
parent 669254d5a5
commit 40d4883233
415 changed files with 1685 additions and 429 deletions

View File

@@ -8,7 +8,8 @@
**********************************************************************/
#pragma once
#ifndef __AUDACITY_TRANSLATABLE_STRING__
#define __AUDACITY_TRANSLATABLE_STRING__
#include <stddef.h> // for size_t
#include <functional>
@@ -319,3 +320,5 @@ inline Sink &operator <<( Sink &sink, const TranslatableString &str )
review the uses of this function, separately from the uses of the type. */
inline TranslatableString Verbatim( wxString str )
{ return TranslatableString( std::move( str ) ); }
#endif