Add missing pragma once to compoundfilereader.h

This commit is contained in:
Marek Roszko 2023-09-09 21:59:30 -04:00
parent bd52ed2054
commit 0e0c267829
2 changed files with 4 additions and 1 deletions

View File

@ -2,3 +2,4 @@ This directory contains the microsoft/compoundfilereader project from https://gi
They are licensed under MIT, with the license text in this directory.
NOTE: These files have been modified from the original. Please review existing changes if updating code.

View File

@ -28,6 +28,8 @@
\endcode
*/
#pragma once
#include <algorithm>
#include <stdint.h>
#include <string.h>
@ -478,4 +480,4 @@ private:
const PROPERTY_SET_STREAM_HDR* m_hdr;
};
}
}