Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dune-copasi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
COPASI
dune-copasi
Merge requests
!84
Support libc++ and reduce minimum required standard to c++20
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Support libc++ and reduce minimum required standard to c++20
feature/support_cpp20
into
master
Overview
0
Commits
3
Pipelines
2
Changes
9
Merged
Santiago Ospina De Los Ríos
requested to merge
feature/support_cpp20
into
master
1 year ago
Overview
0
Commits
3
Pipelines
2
Changes
3
Expand
Use alternative to
std::move_only_function
from function2 library
head only library
provides
unique_function
Issues with using
std::move_only_function
:
requires c++23 with libstdc++
not yet implemented by libc++
Reduce minimum required standard in CMakeLists.txt to c++20
Add missing lambda parentheses
0
0
Merge request reports
Compare
version 1
version 1
bd06000a
1 year ago
master (base)
and
latest version
latest version
985835f4
3 commits,
1 year ago
version 1
bd06000a
3 commits,
1 year ago
Show latest version
3 files
+
18
−
10
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
dune/copasi/common/filesystem.hh
+
4
−
2
Options
@@ -6,14 +6,16 @@
#if HAVE_GHC_FILESYSTEM
#include
<ghc/filesystem.hpp>
namespace
Dune
::
Copasi
{
namespace
fs
=
ghc
::
filesystem
;
}
#else
#include
<filesystem>
namespace
Dune
::
Copasi
{
namespace
fs
=
std
::
filesystem
;
}
#endif
Loading