diff options
author | Jacob Moody <moody@posixcafe.org> | 2023-03-26 00:40:45 +0000 |
---|---|---|
committer | Jacob Moody <moody@posixcafe.org> | 2023-03-26 00:40:45 +0000 |
commit | 2163aebcb85e8214869a2c026b3fc5bd9ddac22c (patch) | |
tree | 16a4145dabf394b4712573f62824d33e5e02c94c /sys/src | |
parent | c615586e7319b2514c5e31697adca76247cfb54d (diff) |
cpp: allow qid version change for #pragma once
Diffstat (limited to 'sys/src')
-rw-r--r-- | sys/src/cmd/cpp/include.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/src/cmd/cpp/include.c b/sys/src/cmd/cpp/include.c index e6e8d7b09..9db5b4f76 100644 --- a/sys/src/cmd/cpp/include.c +++ b/sys/src/cmd/cpp/include.c @@ -13,7 +13,6 @@ static int oncecmp(Once *a, Once *b) { if(a->qid.path == b->qid.path) - if(a->qid.vers == b->qid.vers) if(a->qid.type == b->qid.type) if(a->dev == b->dev) if(a->type == b->type) |