Skip to content

Commit 84c23bb

Browse files
gbMattNvitalybuka
authored andcommitted
Moved star to correct part of declaration
1 parent c173dde commit 84c23bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/test/tsan/many_held_mutex.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
int main(int argc, char *argv[]) {
99
int num_of_mtx = std::stoi(argv[1]);
1010

11-
std::mutex* mutexes = new std::mutex[num_of_mtx];
11+
std::mutex *mutexes = new std::mutex[num_of_mtx];
1212

1313
for (int i = 0; i < num_of_mtx; i++) {
1414
mutexes[i].lock();

0 commit comments

Comments
 (0)