From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-3.1 required=3.0 tests=AWL,BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, RCVD_IN_DNSWL_LOW,RCVD_IN_MSPIKE_H2,SPF_HELO_PASS,SPF_PASS, UNPARSEABLE_RELAY shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from lists.sourceforge.net (lists.sourceforge.net [216.105.38.7]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 52F1A1F66E for ; Tue, 11 Aug 2020 16:25:41 +0000 (UTC) Received: from [127.0.0.1] (helo=sfs-ml-1.v29.lw.sourceforge.com) by sfs-ml-1.v29.lw.sourceforge.com with esmtp (Exim 4.90_1) (envelope-from ) id 1k5X5k-00089a-0G; Tue, 11 Aug 2020 16:25:36 +0000 Received: from [172.30.20.202] (helo=mx.sourceforge.net) by sfs-ml-1.v29.lw.sourceforge.com with esmtps (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.90_1) (envelope-from ) id 1k5X5i-00089M-HM for sox-users@lists.sourceforge.net; Tue, 11 Aug 2020 16:25:34 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sourceforge.net; s=x; h=Content-Type:MIME-Version:Message-ID:Subject:To: From:Date:Sender:Reply-To:Cc:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=GsbZyQIVhb5bYOzL68g2BT85369OjvZdL3yv12JIjuI=; b=Dj24oP9o31xrhhV67Ocix7tWzI r5Ym72rUcp/tZfM8XvhIhrsQmj0zXqdFJTg2KFfV5cLy68Cxxof2KHg9RrmF94E8fUtkqJ5ByjdSU 240zoGwoKHaPwySOUMLin2Capb5BfnQ91xr0M9ImHb+yD4SD068lM8E28+VIKjtbybLk=; DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sf.net; s=x ; h=Content-Type:MIME-Version:Message-ID:Subject:To:From:Date:Sender:Reply-To :Cc:Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To: References:List-Id:List-Help:List-Unsubscribe:List-Subscribe:List-Post: List-Owner:List-Archive; bh=GsbZyQIVhb5bYOzL68g2BT85369OjvZdL3yv12JIjuI=; b=b qnThpZ5MbvFG71pZQREeolnaJIn9kPUFx45ktiey2AK9bQNAG2ZlnW8pmZDqI4Kc433wEjx/P5Z3l dwP6RFSf9uc4A/B+iU14oSR0YrJ1drPvpFJVO6/9F1YlhnuNmfEpnC15NqwIXYqGPesKYlxg1D73/ KBXeGR2KMzNuSziA=; Received: from uvt.stare.cz ([185.63.96.79] helo=mx.stare.cz) by sfi-mx-1.v28.lw.sourceforge.com with esmtps (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92.2) id 1k5X5g-001erF-Pt for sox-users@lists.sourceforge.net; Tue, 11 Aug 2020 16:25:34 +0000 Received: from localhost (stare.cz [local]) by stare.cz (OpenSMTPD) with ESMTPA id e9994217 for ; Tue, 11 Aug 2020 18:25:15 +0200 (CEST) Date: Tue, 11 Aug 2020 18:25:14 +0200 From: Jan Stary To: sox-users@lists.sourceforge.net Message-ID: <20200811162514.GA69809@www.stare.cz> MIME-Version: 1.0 Content-Disposition: inline X-Headers-End: 1k5X5g-001erF-Pt Subject: doxygen X-BeenThere: sox-users@lists.sourceforge.net X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: sox-users@lists.sourceforge.net Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: sox-users-bounces@lists.sourceforge.net There is a Doxyfile (last touched 2011) that nothing seems to use. There is also this in src/sox.h: #ifndef _DOXYGEN_ lsx_static_assert(sizeof(sox_int8_t)==1, sox_int8_size); lsx_static_assert(sizeof(sox_uint8_t)==1, sox_uint8_size); lsx_static_assert(sizeof(sox_int16_t)==2, sox_int16_size); lsx_static_assert(sizeof(sox_uint16_t)==2, sox_uint16_size); lsx_static_assert(sizeof(sox_int32_t)==4, sox_int32_size); lsx_static_assert(sizeof(sox_uint32_t)==4, sox_uint32_size); lsx_static_assert(sizeof(sox_int64_t)==8, sox_int64_size); lsx_static_assert(sizeof(sox_uint64_t)==8, sox_uint64_size); #endif What does sizeof(int) have to do with using DOXYGEN (or not)? Can we remove these please? Jan _______________________________________________ Sox-users mailing list Sox-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/sox-users