aboutsummaryrefslogtreecommitdiff
path: root/pw_preprocessor/public
diff options
context:
space:
mode:
authorRob Mohr <mohrr@google.com>2022-06-30 21:17:06 +0000
committerCQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-06-30 21:17:06 +0000
commitc3bb2f12bbee20449fdbc53d0a813df923c1ce19 (patch)
treed34dff26e7b31ae0928cd461a99d38c9790dc888 /pw_preprocessor/public
parent900b569d9dfb5c4e020bcca71b00b51027c6495a (diff)
downloadpigweed-c3bb2f12bbee20449fdbc53d0a813df923c1ce19.tar.gz
Replace some pwbug/### TODOs with b/###
Change-Id: I28c3fa33afa661aa6d498852a49f008b9717dda3 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/100580 Pigweed-Auto-Submit: Rob Mohr <mohrr@google.com> Reviewed-by: Wyatt Hepler <hepler@google.com> Commit-Queue: Auto-Submit <auto-submit@pigweed.google.com.iam.gserviceaccount.com>
Diffstat (limited to 'pw_preprocessor/public')
-rw-r--r--pw_preprocessor/public/pw_preprocessor/arch.h4
-rw-r--r--pw_preprocessor/public/pw_preprocessor/compiler.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/pw_preprocessor/public/pw_preprocessor/arch.h b/pw_preprocessor/public/pw_preprocessor/arch.h
index 45b7ff42e..676a386c2 100644
--- a/pw_preprocessor/public/pw_preprocessor/arch.h
+++ b/pw_preprocessor/public/pw_preprocessor/arch.h
@@ -13,10 +13,10 @@
// the License.
#pragma once
-// TODO(pwbug/594): arch.h should be refactored out of pw_preprocessor as the
+// TODO(b/234887943): arch.h should be refactored out of pw_preprocessor as the
// scope is outside of the module. The intended scope of arch.h is only to
// provide architecture targeting and not any added utilities and capabilities.
-// Perhaps it should be placed under pw_compiler along with pwbug/593, e.g.
+// Perhaps it should be placed under pw_compiler along with b/234877280, e.g.
// pw_compiler/arch.h?
// Regardless, the arch defines should likely move to a trait system in Pigweed
// before making them public defines for others to use.
diff --git a/pw_preprocessor/public/pw_preprocessor/compiler.h b/pw_preprocessor/public/pw_preprocessor/compiler.h
index 690a061b9..44c2fa9f1 100644
--- a/pw_preprocessor/public/pw_preprocessor/compiler.h
+++ b/pw_preprocessor/public/pw_preprocessor/compiler.h
@@ -18,7 +18,7 @@
#include <assert.h>
-// TODO(pwbug/593): compiler.h should be refactored out of pw_preprocessor as
+// TODO(b/234877280): compiler.h should be refactored out of pw_preprocessor as
// the scope is outside of the module. Perhaps it should be split up and placed
// under pw_compiler, e.g. pw_compiler/attributes.h & pw_compiler/builtins.h.