From c31e306e912a03a89aac660d7a341089ace5b0bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20M=C3=BCller?= Date: Thu, 2 Mar 2017 17:19:55 +0100 Subject: [PATCH] Clarify cpp_storage_class_specifiers meaning --- include/cppast/cpp_storage_class_specifiers.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/cppast/cpp_storage_class_specifiers.hpp b/include/cppast/cpp_storage_class_specifiers.hpp index f7993e3..6535d5f 100644 --- a/include/cppast/cpp_storage_class_specifiers.hpp +++ b/include/cppast/cpp_storage_class_specifiers.hpp @@ -10,6 +10,8 @@ namespace cppast /// C++ storage class specifiers. /// /// See http://en.cppreference.com/w/cpp/language/storage_duration, for example. + /// \notes These are just all the possible *keywords* used in a variable declaration, + /// not necessarily their *semantic* meaning. enum cpp_storage_class_specifiers { cpp_storage_class_none = 0, //< no storage class specifier given.