Skip to content

Commit

Permalink
Test C++ build error.
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdu088 committed Sep 14, 2024
1 parent ea8baba commit d9a5a37
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions SharpExt4/EntryType.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include "pch.h"
#include "EntryType.h"
1 change: 1 addition & 0 deletions SharpExt4/ExtDirEntry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include "pch.h"
#include "ExtDirEntry.h"

SharpExt4::ExtDirEntry::ExtDirEntry(String^ name, uint64_t length, EntryType type)
Expand Down
1 change: 1 addition & 0 deletions SharpExt4/ExtFileStream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include "pch.h"
#include "ExtFileStream.h"
#include "ExtFileSystem.h"
#include <string.h>
Expand Down
1 change: 1 addition & 0 deletions SharpExt4/ExtFileSystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include "pch.h"
#include <cstring>
#include "ExtFileSystem.h"
#include "../lwext4/include/ext4.h"
Expand Down
1 change: 1 addition & 0 deletions SharpExt4/Partition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include "pch.h"
#include "Partition.h"

SharpExt4::Partition::Partition()
Expand Down
8 changes: 4 additions & 4 deletions SharpExt4/SharpExt4.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<PropertyGroup />
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
<WarningLevel>Level3</WarningLevel>
<PreprocessorDefinitions>WIN32;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
Expand All @@ -89,7 +89,7 @@
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
<WarningLevel>Level3</WarningLevel>
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
Expand All @@ -101,7 +101,7 @@
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
<WarningLevel>Level3</WarningLevel>
<PreprocessorDefinitions>WIN32;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
Expand All @@ -113,7 +113,7 @@
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
<WarningLevel>Level3</WarningLevel>
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
Expand Down
1 change: 1 addition & 0 deletions SharpExt4/io_raw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include "pch.h"
#include "../lwext4/include/ext4_config.h"
#include "../lwext4/include/ext4_blockdev.h"
#include "../lwext4/include/ext4_errno.h"
Expand Down

0 comments on commit d9a5a37

Please sign in to comment.