Skip to content

Commit

Permalink
chore: Deployment target is now macOS 10.11
Browse files Browse the repository at this point in the history
  • Loading branch information
macmade committed Mar 7, 2024
1 parent 3383ee0 commit 0da9e94
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Submodules/STDXS
2 changes: 1 addition & 1 deletion lib-macho/source/CacheFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ namespace MachO

if( this->impl->_path.has_value() )
{
i.value( XS::ToString::Filename( this->impl->_path.value() ) );
i.value( XS::ToString::Filename( *( this->impl->_path ) ) );
}

i.addChild( { "Header", this->header() } );
Expand Down
2 changes: 1 addition & 1 deletion lib-macho/source/FatFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ namespace MachO

if( this->impl->_path.has_value() )
{
i.value( XS::ToString::Filename( this->impl->_path.value() ) );
i.value( XS::ToString::Filename( *( this->impl->_path ) ) );
}

for( const auto & p: this->impl->_archs )
Expand Down
6 changes: 3 additions & 3 deletions lib-macho/source/File.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ namespace MachO
return {};
}

const void * header = _dyld_get_image_header( index.value() );
const void * header = _dyld_get_image_header( *( index ) );

if( header == nullptr )
{
Expand Down Expand Up @@ -162,7 +162,7 @@ namespace MachO

if( this->impl->_path.has_value() )
{
i.value( XS::ToString::Filename( this->impl->_path.value() ) );
i.value( XS::ToString::Filename( *( this->impl->_path ) ) );
}

commands.value( std::to_string( this->loadCommands().size() ) );
Expand Down Expand Up @@ -303,7 +303,7 @@ namespace MachO

if( str.has_value() )
{
set.insert( str.value() );
set.insert( *( str ) );
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions macho.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@
"$(SRCROOT)/lib-macho/include/",
"$(SRCROOT)/Submodules/STDXS/XS++/include/",
);
MACOSX_DEPLOYMENT_TARGET = 10.14;
MACOSX_DEPLOYMENT_TARGET = 10.11;
};
name = Debug;
};
Expand All @@ -937,7 +937,7 @@
"$(SRCROOT)/lib-macho/include/",
"$(SRCROOT)/Submodules/STDXS/XS++/include/",
);
MACOSX_DEPLOYMENT_TARGET = 10.14;
MACOSX_DEPLOYMENT_TARGET = 10.11;
};
name = Release;
};
Expand Down

0 comments on commit 0da9e94

Please sign in to comment.