├── .github └── workflows │ ├── gh-pages.yml │ └── test-mkdocs.yml ├── .gitignore ├── LICENSE ├── ReadMe.md ├── docs ├── Introduction to type and resource safety.pdf ├── Lifetime.pdf ├── P0122R4.pdf ├── ctor-dtor-raii-popl12.pdf └── gsl-intro.md ├── images └── cpp_core_guidelines_logo_text.png ├── mkdocs.yml ├── requirements.txt ├── sections ├── Architecture.md ├── Bibliography.md ├── CPL.md ├── Class.md ├── Concurrency.md ├── Const.md ├── Enum.md ├── Errors.md ├── Expr.md ├── FAQ.md ├── Functions.md ├── GSL.md ├── Glossary.md ├── Interfaces.md ├── Introduction.md ├── Naming.md ├── Not.md ├── Performance.md ├── Philosophy.md ├── Profile.md ├── ReadMe.md ├── References.md ├── Resource.md ├── SL.md ├── Source.md ├── Templates.md ├── Unclassified.md ├── appendix │ ├── DIscussion.md │ ├── Libraries.md │ ├── Modernizing.md │ └── Tools.md ├── home.md ├── images │ ├── cpp_core_guidelines_logo_text.png │ ├── logo.svg │ ├── param-passing-advanced.png │ └── param-passing-normal.png └── index.md └── talks ├── Contracts-for-Dependable-C++.pdf ├── Large-Scale-C++-With-Modules.pdf ├── MacIntosh - A Few Good Types.pdf ├── MacIntosh - Static Analysis and C++.pdf ├── README.md ├── Stroustrup - CppCon 2015 keynote.pdf └── Sutter - CppCon 2015 day 2 plenary .pdf /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/test-mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/.github/workflows/test-mkdocs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/ReadMe.md -------------------------------------------------------------------------------- /docs/Introduction to type and resource safety.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/docs/Introduction to type and resource safety.pdf -------------------------------------------------------------------------------- /docs/Lifetime.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/docs/Lifetime.pdf -------------------------------------------------------------------------------- /docs/P0122R4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/docs/P0122R4.pdf -------------------------------------------------------------------------------- /docs/ctor-dtor-raii-popl12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/docs/ctor-dtor-raii-popl12.pdf -------------------------------------------------------------------------------- /docs/gsl-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/docs/gsl-intro.md -------------------------------------------------------------------------------- /images/cpp_core_guidelines_logo_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/images/cpp_core_guidelines_logo_text.png -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/requirements.txt -------------------------------------------------------------------------------- /sections/Architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Architecture.md -------------------------------------------------------------------------------- /sections/Bibliography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Bibliography.md -------------------------------------------------------------------------------- /sections/CPL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/CPL.md -------------------------------------------------------------------------------- /sections/Class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Class.md -------------------------------------------------------------------------------- /sections/Concurrency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Concurrency.md -------------------------------------------------------------------------------- /sections/Const.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Const.md -------------------------------------------------------------------------------- /sections/Enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Enum.md -------------------------------------------------------------------------------- /sections/Errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Errors.md -------------------------------------------------------------------------------- /sections/Expr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Expr.md -------------------------------------------------------------------------------- /sections/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/FAQ.md -------------------------------------------------------------------------------- /sections/Functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Functions.md -------------------------------------------------------------------------------- /sections/GSL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/GSL.md -------------------------------------------------------------------------------- /sections/Glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Glossary.md -------------------------------------------------------------------------------- /sections/Interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Interfaces.md -------------------------------------------------------------------------------- /sections/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Introduction.md -------------------------------------------------------------------------------- /sections/Naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Naming.md -------------------------------------------------------------------------------- /sections/Not.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Not.md -------------------------------------------------------------------------------- /sections/Performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Performance.md -------------------------------------------------------------------------------- /sections/Philosophy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Philosophy.md -------------------------------------------------------------------------------- /sections/Profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Profile.md -------------------------------------------------------------------------------- /sections/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/ReadMe.md -------------------------------------------------------------------------------- /sections/References.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/References.md -------------------------------------------------------------------------------- /sections/Resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Resource.md -------------------------------------------------------------------------------- /sections/SL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/SL.md -------------------------------------------------------------------------------- /sections/Source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Source.md -------------------------------------------------------------------------------- /sections/Templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Templates.md -------------------------------------------------------------------------------- /sections/Unclassified.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/Unclassified.md -------------------------------------------------------------------------------- /sections/appendix/DIscussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/appendix/DIscussion.md -------------------------------------------------------------------------------- /sections/appendix/Libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/appendix/Libraries.md -------------------------------------------------------------------------------- /sections/appendix/Modernizing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/appendix/Modernizing.md -------------------------------------------------------------------------------- /sections/appendix/Tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/appendix/Tools.md -------------------------------------------------------------------------------- /sections/home.md: -------------------------------------------------------------------------------- 1 | ./ReadMe.md -------------------------------------------------------------------------------- /sections/images/cpp_core_guidelines_logo_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/images/cpp_core_guidelines_logo_text.png -------------------------------------------------------------------------------- /sections/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/images/logo.svg -------------------------------------------------------------------------------- /sections/images/param-passing-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/images/param-passing-advanced.png -------------------------------------------------------------------------------- /sections/images/param-passing-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/sections/images/param-passing-normal.png -------------------------------------------------------------------------------- /sections/index.md: -------------------------------------------------------------------------------- 1 | ../ReadMe.md -------------------------------------------------------------------------------- /talks/Contracts-for-Dependable-C++.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/talks/Contracts-for-Dependable-C++.pdf -------------------------------------------------------------------------------- /talks/Large-Scale-C++-With-Modules.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/talks/Large-Scale-C++-With-Modules.pdf -------------------------------------------------------------------------------- /talks/MacIntosh - A Few Good Types.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/talks/MacIntosh - A Few Good Types.pdf -------------------------------------------------------------------------------- /talks/MacIntosh - Static Analysis and C++.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/talks/MacIntosh - Static Analysis and C++.pdf -------------------------------------------------------------------------------- /talks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/talks/README.md -------------------------------------------------------------------------------- /talks/Stroustrup - CppCon 2015 keynote.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/talks/Stroustrup - CppCon 2015 keynote.pdf -------------------------------------------------------------------------------- /talks/Sutter - CppCon 2015 day 2 plenary .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CppKorea/CppCoreGuidelines/HEAD/talks/Sutter - CppCon 2015 day 2 plenary .pdf --------------------------------------------------------------------------------