diff -r bad0cc58d154 -r c74b3d9f6b9e eapol/eapol_framework/eapol_common/include/eap_automatic_variable.h --- a/eapol/eapol_framework/eapol_common/include/eap_automatic_variable.h Tue Aug 31 15:16:37 2010 +0300 +++ b/eapol/eapol_framework/eapol_common/include/eap_automatic_variable.h Wed Sep 01 12:23:57 2010 +0100 @@ -16,7 +16,7 @@ */ /* -* %version: % +* %version: 13.1.2 % */ #if !defined(_EAP_AUTOMATIC_VARIABLE_H_) @@ -244,8 +244,6 @@ /// This is pointer to the string that will be traced on destructor. eap_format_string m_string; - u32_t m_trace_flags; - public: /** @@ -259,7 +257,7 @@ { EAP_TRACE_DEBUG( m_am_tools, - m_trace_flags, + TRACE_FLAGS_DEFAULT, (EAPL("<<< %s <<<\n"), m_string)); } @@ -273,23 +271,7 @@ abs_eap_am_tools_c * const tools, eap_format_string string) : m_am_tools(tools) - , m_string(string) - , m_trace_flags(TRACE_FLAGS_DEFAULT) - { - EAP_TRACE_BEGIN(m_am_tools, TRACE_FLAGS_DEFAULT); - EAP_TRACE_END(m_am_tools, TRACE_FLAGS_DEFAULT); - } - - /** - * The constructor sets the values for the member variables - */ - eap_automatic_trace_string_c( - abs_eap_am_tools_c * const tools, - const u32_t flags, - eap_format_string string) - : m_am_tools(tools) , m_string(string) - , m_trace_flags(flags) { EAP_TRACE_BEGIN(m_am_tools, TRACE_FLAGS_DEFAULT); EAP_TRACE_END(m_am_tools, TRACE_FLAGS_DEFAULT);