Keyboard Shortcuts

File
u :up to issue
m :publish + mail comments
M :edit review message
j / k :jump to file after / before current file
J / K :jump to next file with a comment after / before current file
Side-by-side diff
i :toggle intra-line diffs
e :expand all comments
c :collapse all comments
s :toggle showing all comments
n / p :next / previous diff chunk or comment
N / P :next / previous comment
<Up> / <Down> :next / previous line
<Enter> :respond to / edit current comment
d :mark current comment as done
Issue
u :up to list of issues
m :publish + mail comments
j / k :jump to patch after / before current patch
o / <Enter> :open current patch in side-by-side view
i :open current patch in unified diff view
Issue List
j / k :jump to issue after / before current issue
o / <Enter> :open current issue
# : close issue
Comment/message editing
<Ctrl> + s or <Ctrl> + Enter :save comment
<Esc> :cancel edit
Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(247)
Issues Repositories Search
Open Issues | Closed Issues | All Issues | Sign in with your Google Account to create issues and add comments

Issue 4952051: Rename to C++ Ox conventions

Can't Edit
Can't Publish+Mail
Start Review
Created:
14 years, 4 months ago by supertri
Modified:
14 years, 4 months ago
Visibility:
Public.

Patch Set 1 #

Total comments: 10
Created: 14 years, 4 months ago
Download [raw] [tar.bz2]
Unified diffs Side-by-side diffs Delta from patch set Stats (+152 lines, -161 lines) Patch
M include/clang/Basic/DiagnosticSemaKinds.td View 1 chunk +18 lines, -17 lines 10 comments Download
M lib/Sema/AnalysisBasedWarnings.cpp View 27 chunks +80 lines, -90 lines 0 comments Download
M test/SemaCXX/warn-thread-safety-analysis.cpp View 19 chunks +54 lines, -54 lines 0 comments Download
Total messages: 3
|
chandlerc
http://codereview.appspot.com/4952051/diff/1/include/clang/Basic/DiagnosticSemaKinds.td File include/clang/Basic/DiagnosticSemaKinds.td (right): http://codereview.appspot.com/4952051/diff/1/include/clang/Basic/DiagnosticSemaKinds.td#newcode1396 include/clang/Basic/DiagnosticSemaKinds.td:1396: "mutex '%0' is still held at the end of ...
14 years, 4 months ago (2011年09月08日 17:40:31 UTC) #1
http://codereview.appspot.com/4952051/diff/1/include/clang/Basic/DiagnosticSe...
File include/clang/Basic/DiagnosticSemaKinds.td (right):
http://codereview.appspot.com/4952051/diff/1/include/clang/Basic/DiagnosticSe...
include/clang/Basic/DiagnosticSemaKinds.td:1396: "mutex '%0' is still held at
the end of function '%1'">,
I would use "still locked" to avoid introducing a third term (held) into the
diagnostics
http://codereview.appspot.com/4952051/diff/1/include/clang/Basic/DiagnosticSe...
include/clang/Basic/DiagnosticSemaKinds.td:1407: "lock '%0' is exclusive and
shared in the same scope">,
"mutex 'X' is locked exclusively and shared ..." would seem more aligned with
these messages...
http://codereview.appspot.com/4952051/diff/1/include/clang/Basic/DiagnosticSe...
include/clang/Basic/DiagnosticSemaKinds.td:1413: "%select{reading|writing}2
variable '%0' requires lock on '%1' to be "
requires locking '%1' exclusively
http://codereview.appspot.com/4952051/diff/1/include/clang/Basic/DiagnosticSe...
include/clang/Basic/DiagnosticSemaKinds.td:1417: "accessing variable '%0'
requires some lock">,
requires locking some mutex
http://codereview.appspot.com/4952051/diff/1/include/clang/Basic/DiagnosticSe...
include/clang/Basic/DiagnosticSemaKinds.td:1427: "calling function '%0' requires
%select{shared|exclusive}2 lock on '%1'">,
requires locking '%1' exclusively
http://codereview.appspot.com/4952051/diff/1/include/clang/Basic/DiagnosticSe...
include/clang/Basic/DiagnosticSemaKinds.td:1430: "cannot call function '%0'
while holding mutex '%1'">,
while mutex '%1' is locked
Sign in to reply to this message.
supertri
Since Doug LGTM'd this patch, I have committed it as is (and will shortly commit ...
14 years, 4 months ago (2011年09月08日 21:54:48 UTC) #2
Since Doug LGTM'd this patch, I have committed it as is (and will shortly commit
the massive refactoring and file moving patches that followed). However, if any
of you have any additional edits, I will commit them in a follow-on patch as
soon as you are done reviewing.
Sign in to reply to this message.
supertri
Changes committed (finally). http://codereview.appspot.com/4952051/diff/1/include/clang/Basic/DiagnosticSemaKinds.td File include/clang/Basic/DiagnosticSemaKinds.td (right): http://codereview.appspot.com/4952051/diff/1/include/clang/Basic/DiagnosticSemaKinds.td#newcode1396 include/clang/Basic/DiagnosticSemaKinds.td:1396: "mutex '%0' is still held at ...
14 years, 4 months ago (2011年09月15日 18:18:02 UTC) #3
Changes committed (finally).
http://codereview.appspot.com/4952051/diff/1/include/clang/Basic/DiagnosticSe...
File include/clang/Basic/DiagnosticSemaKinds.td (right):
http://codereview.appspot.com/4952051/diff/1/include/clang/Basic/DiagnosticSe...
include/clang/Basic/DiagnosticSemaKinds.td:1396: "mutex '%0' is still held at
the end of function '%1'">,
On 2011年09月08日 17:40:31, chandlerc wrote:
> I would use "still locked" to avoid introducing a third term (held) into the
> diagnostics
Done.
http://codereview.appspot.com/4952051/diff/1/include/clang/Basic/DiagnosticSe...
include/clang/Basic/DiagnosticSemaKinds.td:1407: "lock '%0' is exclusive and
shared in the same scope">,
On 2011年09月08日 17:40:31, chandlerc wrote:
> "mutex 'X' is locked exclusively and shared ..." would seem more aligned with
> these messages...
Done.
http://codereview.appspot.com/4952051/diff/1/include/clang/Basic/DiagnosticSe...
include/clang/Basic/DiagnosticSemaKinds.td:1427: "calling function '%0' requires
%select{shared|exclusive}2 lock on '%1'">,
On 2011年09月08日 17:40:31, chandlerc wrote:
> requires locking '%1' exclusively
Done.
http://codereview.appspot.com/4952051/diff/1/include/clang/Basic/DiagnosticSe...
include/clang/Basic/DiagnosticSemaKinds.td:1430: "cannot call function '%0'
while holding mutex '%1'">,
On 2011年09月08日 17:40:31, chandlerc wrote:
> while mutex '%1' is locked
Done.
Sign in to reply to this message.
|
Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b

AltStyle によって変換されたページ (->オリジナル) /