From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 55660 invoked by alias); 26 Nov 2016 17:18:33 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 55644 invoked by uid 89); 26 Nov 2016 17:18:33 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.5 required=5.0 tests=AWL,BAYES_40,SPF_HELO_PASS,SPF_SOFTFAIL autolearn=no version=3.3.2 spammy=HX-PHP-Originating-Script:rcube.php, BODY, States, states X-HELO: simark.ca Received: from simark.ca (HELO simark.ca) (158.69.221.121) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 26 Nov 2016 17:18:31 +0000 Received: by simark.ca (Postfix, from userid 33) id 600BC1E86E; Sat, 26 Nov 2016 12:18:30 -0500 (EST) To: gdb-patches@sourceware.org Subject: Re: [PATCH 20/22] Class-ify ui_out_table X-PHP-Originating-Script: 33:rcube.php MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Sat, 26 Nov 2016 17:18:00 -0000 From: Simon Marchi In-Reply-To: <20161124153228.25177-20-simon.marchi@polymtl.ca> References: <20161124152428.24725-1-simon.marchi@polymtl.ca> <20161124153228.25177-20-simon.marchi@polymtl.ca> Message-ID: X-Sender: simon.marchi@polymtl.ca User-Agent: Roundcube Webmail/1.2.2 X-IsSubscribed: yes X-SW-Source: 2016-11/txt/msg00898.txt.bz2 On 2016-11-24 10:32, Simon Marchi wrote: > + /* States (steps) of a table generation. */ > + > + enum state > + { > + /* We are generating the table headers. */ > + TABLE_STATE_HEADERS, > + > + /* We are generating the table body. */ > + TABLE_STATE_BODY, > + }; I changed the enum to: /* States (steps) of a table generation. */ enum class state { /* We are generating the table headers. */ HEADERS, /* We are generating the table body. */ BODY, }; and adjusted the references.