Return-Path: X-Original-To: apmail-logging-commits-archive@minotaur.apache.org Delivered-To: apmail-logging-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CBAE77CDD for ; Fri, 16 Sep 2011 13:38:08 +0000 (UTC) Received: (qmail 70651 invoked by uid 500); 16 Sep 2011 13:38:08 -0000 Delivered-To: apmail-logging-commits-archive@logging.apache.org Received: (qmail 70628 invoked by uid 500); 16 Sep 2011 13:38:08 -0000 Mailing-List: contact commits-help@logging.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@logging.apache.org Delivered-To: mailing list commits@logging.apache.org Received: (qmail 70621 invoked by uid 99); 16 Sep 2011 13:38:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Sep 2011 13:38:08 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Sep 2011 13:38:07 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id B4B732388900; Fri, 16 Sep 2011 13:37:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1171554 - /logging/log4net/trunk/src/Core/LocationInfo.cs Date: Fri, 16 Sep 2011 13:37:47 -0000 To: commits@logging.apache.org From: bodewig@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110916133747.B4B732388900@eris.apache.org> Author: bodewig Date: Fri Sep 16 13:37:47 2011 New Revision: 1171554 URL: http://svn.apache.org/viewvc?rev=1171554&view=rev Log: There is no StrackFrame type in Compact Framework, overlooked one reference Modified: logging/log4net/trunk/src/Core/LocationInfo.cs Modified: logging/log4net/trunk/src/Core/LocationInfo.cs URL: http://svn.apache.org/viewvc/logging/log4net/trunk/src/Core/LocationInfo.cs?rev=1171554&r1=1171553&r2=1171554&view=diff ============================================================================== --- logging/log4net/trunk/src/Core/LocationInfo.cs (original) +++ logging/log4net/trunk/src/Core/LocationInfo.cs Fri Sep 16 13:37:47 2011 @@ -290,7 +290,9 @@ namespace log4net.Core private readonly string m_lineNumber; private readonly string m_methodName; private readonly string m_fullInfo; +#if !NETCF private readonly StackFrame[] m_stackFrames; +#endif #endregion Private Instance Fields