From af1f767dfe2964760cd40bbce0b721642ecb9758 Mon Sep 17 00:00:00 2001 From: Beman Date: Mon, 28 Nov 2016 08:32:26 -0500 Subject: [PATCH] Comment two lines of code to try to prevent user confusion error_codes and error_conditions, such exhibited by ticket #12574. --- include/boost/system/error_code.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/boost/system/error_code.hpp b/include/boost/system/error_code.hpp index e7466da..9e25a7d 100644 --- a/include/boost/system/error_code.hpp +++ b/include/boost/system/error_code.hpp @@ -39,8 +39,9 @@ namespace boost namespace system { - class error_code; - class error_condition; + class error_code; // values defined by the operating system + class error_condition; // portable generic values defined below, but ultimately + // based on the POSIX standard // "Concept" helpers ---------------------------------------------------//