Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 2A51D200BD8 for ; Wed, 23 Nov 2016 00:35:41 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 28D22160B1C; Tue, 22 Nov 2016 23:35:41 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 74C6C160B0C for ; Wed, 23 Nov 2016 00:35:40 +0100 (CET) Received: (qmail 61286 invoked by uid 500); 22 Nov 2016 23:35:39 -0000 Mailing-List: contact commits-help@quickstep.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@quickstep.incubator.apache.org Delivered-To: mailing list commits@quickstep.incubator.apache.org Received: (qmail 61273 invoked by uid 99); 22 Nov 2016 23:35:39 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Nov 2016 23:35:39 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 5BCFE1804FC for ; Tue, 22 Nov 2016 23:35:39 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -6.218 X-Spam-Level: X-Spam-Status: No, score=-6.218 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-2.999, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id rD4yh5gHhSJG for ; Tue, 22 Nov 2016 23:35:37 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id 550965FB4B for ; Tue, 22 Nov 2016 23:35:36 +0000 (UTC) Received: (qmail 61226 invoked by uid 99); 22 Nov 2016 23:35:30 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Nov 2016 23:35:30 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 56D34DFF75; Tue, 22 Nov 2016 23:35:30 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jianqiao@apache.org To: commits@quickstep.incubator.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: incubator-quickstep git commit: Minor fixes Date: Tue, 22 Nov 2016 23:35:30 +0000 (UTC) archived-at: Tue, 22 Nov 2016 23:35:41 -0000 Repository: incubator-quickstep Updated Branches: refs/heads/LIP-time-decomposition 97f6a4d52 -> 81b931cc3 Minor fixes Project: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/commit/81b931cc Tree: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/tree/81b931cc Diff: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/diff/81b931cc Branch: refs/heads/LIP-time-decomposition Commit: 81b931cc3355bf8a5c592ab850407d930bc076c4 Parents: 97f6a4d Author: Jianqiao Zhu Authored: Tue Nov 22 17:35:22 2016 -0600 Committer: Jianqiao Zhu Committed: Tue Nov 22 17:35:22 2016 -0600 ---------------------------------------------------------------------- utility/EventProfiler.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/81b931cc/utility/EventProfiler.hpp ---------------------------------------------------------------------- diff --git a/utility/EventProfiler.hpp b/utility/EventProfiler.hpp index 2c8df25..f856f00 100644 --- a/utility/EventProfiler.hpp +++ b/utility/EventProfiler.hpp @@ -164,9 +164,8 @@ class EventProfiler { }; template - struct TuplePrinter { + struct TuplePrinter { static void Print(std::ostream &os, const Tuple &t, const std::string &sep) { - os << std::get<0>(t) << sep; } };