From ba8180b6e25d073f2cddfc05cd08ee1eca1a2463 Mon Sep 17 00:00:00 2001 From: Vijay Pai Date: Thu, 21 Dec 2017 12:41:51 -0800 Subject: [PATCH] POD data -> POD Avoid redundancy --- cppguide.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cppguide.html b/cppguide.html index 590cc9f..b2afc05 100644 --- a/cppguide.html +++ b/cppguide.html @@ -897,7 +897,7 @@ needs to run at both exit() and both places.)

As a result we only allow static variables to contain -POD data. This rule completely disallows +POD. This rule completely disallows std::vector (use C arrays instead), or string (use const char []).