From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qt1-x834.google.com (mail-qt1-x834.google.com [IPv6:2607:f8b0:4864:20::834]) by sourceware.org (Postfix) with ESMTPS id 896983858D28 for ; Fri, 19 Aug 2022 18:00:37 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 896983858D28 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=obs.cr Authentication-Results: sourceware.org; spf=none smtp.mailfrom=obs.cr Received: by mail-qt1-x834.google.com with SMTP id s11so3906266qtx.6 for ; Fri, 19 Aug 2022 11:00:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=obs-cr.20210112.gappssmtp.com; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:subject:to :from:from:to:cc; bh=YWedqrDYQrFXVuEIsYqymnVMOF1+ncDi1YsatJ92rvI=; b=zzVnY8lsBuM4+scwJyhx3K4J+KEQhotW7VOQNDOurAgDvKicthu3dc9Ob1iHWF1kQ0 vagb4Pv+40u0TAoqRdiscMqSG82NeYoAh9zDU4a+BtQmkjpeI/x5Gm2JqL2R8j7qquA2 iQR46iH8NA7rF2+5wFxjLYlCnDx1soo7Ork56a2mB4146mXxPJ3SK5RNatxjnohQwodS SSzqC74qqw+shPeLQVFv+AYWm5LBL50hrhMDtXr29an1xTDe7uCVcLWOy5VQhkSdRuxJ itSw8t6vXud63negCE8GPzDzSUlInDDcyNjDdL/e9LVfgUBvrgtqHkfk75BHdkSdpl3z PT8Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:subject:to :from:x-gm-message-state:from:to:cc; bh=YWedqrDYQrFXVuEIsYqymnVMOF1+ncDi1YsatJ92rvI=; b=oi2xSlBZn17d/RA8hgc0Vb0N0dLSiCcYTylPGsny3i/tUxIiKjYNZf/wApKclTTD4I /WtoSnzu1WUVz1XCBKV25RRm2h+M52fCBdbCM7TX0NC/mFsIGEUxUG8m6IJ+71LHO5jQ 3RelvY7j1qKK8V+oFPjOcruZv9bRaLNJWjcw5ZEMFIJT1vK++F6M1pVFr8XoVEu89VzY X1SSGtw+5O+ENblU+ewHVOvoJ1BP/m4gHSlt9HuqfjgZAi7k6LpHacZHl1EAq+cminbj MHEcnCU02h3UVryx+r30VszyqexQ/lSOzXTSyWPSqJVZH0dcfZT8HGujVYwU7JwJcuYa MmfA== X-Gm-Message-State: ACgBeo099NFkDdlFk0EZ/64vhUpBArZEyknC4TTECpAKQYt0Z7y4WALf T+wY8ZnB9jW4btfautdzvGStU2m7hPpMJ1IT X-Google-Smtp-Source: AA6agR5yLQhnyTwg62M4hdQGsio+G1LACt9CP+5Sjlkqq1Q1E4w0TZBn6aKtav4MZRQVAvS5hNchUA== X-Received: by 2002:a05:622a:1907:b0:344:5778:735a with SMTP id w7-20020a05622a190700b003445778735amr7410776qtc.216.1660932036472; Fri, 19 Aug 2022 11:00:36 -0700 (PDT) Received: from localhost.localdomain (ip-192-24-137-251.dynamic.fuse.net. [192.24.137.251]) by smtp.gmail.com with ESMTPSA id j7-20020a05620a288700b006b8d9d53605sm3980289qkp.125.2022.08.19.11.00.35 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 19 Aug 2022 11:00:36 -0700 (PDT) From: whh8b@obs.cr To: libstdc++@gcc.gnu.org Subject: [PATCH] libstdc++: Add std:: prefix for forward_iterator_tag Date: Fri, 19 Aug 2022 14:00:33 -0400 Message-Id: <20220819180034.98441-1-whh8b@obs.cr> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_NONE, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: libstdc++@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++ mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2022 18:00:39 -0000 Hello! First, I know this patch is incredibly tiny but I hope it is helpful. Second, I've been a longtime reader of the libstdc++ source code but never been able to overcome the fear of attempting to contribute. I have attempted to follow all the rules. Please correct what I have done wrong. Thank you for all the work you put in to developing the library! Will