@@ -888,39 +888,6 @@ struct PublicSettings {
888
888
*/
889
889
std::vector<std::string> defines;
890
890
891
- /* * Use the system C++ standard library
892
-
893
- To achieve reproducible results, MrDocs bundles the LibC++ headers.
894
-
895
- To use the C++ standard library available in the system instead, set
896
- this option to true.
897
- */
898
- bool useSystemStdlib = false ;
899
-
900
- /* * C++ Standard Library include paths
901
-
902
- When `use-system-stdlib` is disabled, the C++ standard library headers
903
- are available in these paths.
904
- */
905
- std::vector<std::string> stdlibIncludes;
906
-
907
- /* * Use the system C standard library
908
-
909
- To achieve reproducible results, MrDocs bundles the LibC headers with
910
- its definitions.
911
-
912
- To use the C standard library available in the system instead, set
913
- this option to true.
914
- */
915
- bool useSystemLibc = false ;
916
-
917
- /* * Standard Library include paths
918
-
919
- When `use-system-libc` is disabled, the C standard library headers are
920
- available in these paths.
921
- */
922
- std::vector<std::string> libcIncludes;
923
-
924
891
/* * System include paths
925
892
926
893
System include paths.
@@ -1653,10 +1620,6 @@ struct PublicSettings {
1653
1620
std::forward<F>(f)(" global-namespace-index" , globalNamespaceIndex);
1654
1621
std::forward<F>(f)(" cmake" , cmake);
1655
1622
std::forward<F>(f)(" defines" , defines);
1656
- std::forward<F>(f)(" use-system-stdlib" , useSystemStdlib);
1657
- std::forward<F>(f)(" stdlib-includes" , stdlibIncludes);
1658
- std::forward<F>(f)(" use-system-libc" , useSystemLibc);
1659
- std::forward<F>(f)(" libc-includes" , libcIncludes);
1660
1623
std::forward<F>(f)(" system-includes" , systemIncludes);
1661
1624
std::forward<F>(f)(" includes" , includes);
1662
1625
std::forward<F>(f)(" verbose" , verbose);
@@ -1734,10 +1697,6 @@ struct PublicSettings {
1734
1697
std::forward<F>(f)(" global-namespace-index" , globalNamespaceIndex);
1735
1698
std::forward<F>(f)(" cmake" , cmake);
1736
1699
std::forward<F>(f)(" defines" , defines);
1737
- std::forward<F>(f)(" use-system-stdlib" , useSystemStdlib);
1738
- std::forward<F>(f)(" stdlib-includes" , stdlibIncludes);
1739
- std::forward<F>(f)(" use-system-libc" , useSystemLibc);
1740
- std::forward<F>(f)(" libc-includes" , libcIncludes);
1741
1700
std::forward<F>(f)(" system-includes" , systemIncludes);
1742
1701
std::forward<F>(f)(" includes" , includes);
1743
1702
std::forward<F>(f)(" verbose" , verbose);
0 commit comments