From 7944db2f181ccb240fca675aabf267d932eff721 Mon Sep 17 00:00:00 2001 From: Soonho Kong Date: Mon, 28 Oct 2013 11:31:46 -0400 Subject: [PATCH] doc(coding_style): add how to organize template source code [skip ci] --- doc/coding_style.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/coding_style.md b/doc/coding_style.md index 698454748..200dcccb8 100644 --- a/doc/coding_style.md +++ b/doc/coding_style.md @@ -51,6 +51,10 @@ reference counter is stored in `expr_cell`. We use `std::unique_ptr` to make sure unique resources will be freed correctly. +Template +-------- +We organize template source code using the approach described at http://www.codeproject.com/Articles/3515/How-To-Organize-Template-Source-Code + Idioms ------