From patchwork Wed Apr 29 10:47:47 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John McNamara X-Patchwork-Id: 4498 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 2A7BDC7FE; Wed, 29 Apr 2015 12:47:52 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id B74EBC7EE for ; Wed, 29 Apr 2015 12:47:50 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga101.jf.intel.com with ESMTP; 29 Apr 2015 03:47:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.11,670,1422950400"; d="scan'208";a="563581680" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga003.jf.intel.com with ESMTP; 29 Apr 2015 03:47:48 -0700 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id t3TAlloW026890; Wed, 29 Apr 2015 11:47:48 +0100 Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id t3TAll7Y012693; Wed, 29 Apr 2015 11:47:47 +0100 Received: (from jmcnam2x@localhost) by sivswdev02.ir.intel.com with id t3TAllmF012689; Wed, 29 Apr 2015 11:47:47 +0100 From: John McNamara To: dev@dpdk.org Date: Wed, 29 Apr 2015 11:47:47 +0100 Message-Id: <1430304467-12658-1-git-send-email-john.mcnamara@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dpdk-dev] [PATCH] doc: disable doxygen member sorting X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Disabled the doxygen option to sort member data so that functions and struct memebers are listed in order of definition in the brief and main sections. Previously they were sorted in the brief section and were in definition order in the main section. Signed-off-by: John McNamara --- doc/api/doxy-api.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/api/doxy-api.conf b/doc/api/doxy-api.conf index da03e9b..50d2c15 100644 --- a/doc/api/doxy-api.conf +++ b/doc/api/doxy-api.conf @@ -77,3 +77,4 @@ ALPHABETICAL_INDEX = NO HTML_TIMESTAMP = NO HTML_DYNAMIC_SECTIONS = YES SEARCHENGINE = NO +SORT_MEMBER_DOCS = NO