From ba3ee71edfd89637cfeca66b05434145398c4fbf Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Wed, 19 Dec 2018 02:09:31 -0500 Subject: [PATCH] update the github workflow checklist with a missing requirement --- doc/github-development-workflow.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/github-development-workflow.md b/doc/github-development-workflow.md index a34c3389df..2a5e34bb63 100644 --- a/doc/github-development-workflow.md +++ b/doc/github-development-workflow.md @@ -139,6 +139,7 @@ Here are some items to check: Forward declarations should be used instead when possible. * iostreams should be avoided. LAMMPS uses stdio from the C-library. * use of STL in headers and class definitions should be avoided. + * there must not be any "using namespace XXX;" statements in headers. * static class members should be avoided at all cost. * anything storing atom IDs should be using `tagint` and not `int`. This can be flagged by the compiler only for pointers and only when