<html>
<head>
<base href="http://llvm.org/bugs/" />
</head>
<body><table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Bug ID</th>
<td><a class="bz_bug_link
bz_status_NEW "
title="NEW --- - False positive for -Wunused-variable with static member of internal-linkage type"
href="http://llvm.org/bugs/show_bug.cgi?id=15558">15558</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>False positive for -Wunused-variable with static member of internal-linkage type
</td>
</tr>
<tr>
<th>Product</th>
<td>clang
</td>
</tr>
<tr>
<th>Version</th>
<td>trunk
</td>
</tr>
<tr>
<th>Hardware</th>
<td>PC
</td>
</tr>
<tr>
<th>OS</th>
<td>All
</td>
</tr>
<tr>
<th>Status</th>
<td>NEW
</td>
</tr>
<tr>
<th>Severity</th>
<td>normal
</td>
</tr>
<tr>
<th>Priority</th>
<td>P
</td>
</tr>
<tr>
<th>Component</th>
<td>Frontend
</td>
</tr>
<tr>
<th>Assignee</th>
<td>unassignedclangbugs@nondot.org
</td>
</tr>
<tr>
<th>Reporter</th>
<td>matthewbg@google.com
</td>
</tr>
<tr>
<th>CC</th>
<td>llvmbugs@cs.uiuc.edu
</td>
</tr>
<tr>
<th>Classification</th>
<td>Unclassified
</td>
</tr></table>
<p>
<div>
<pre>$ cat test.cc
namespace {
class Bar {};
}
class Foo {
static Bar b;
};
$ clang -fsyntax-only -Wunused-variable test.cc
test.cc:5:14: warning: unused variable 'b' [-Wunused-variable]
static Bar b;
^
In the actual code I found this in, 'Foo' and 'Bar' are defined in foo.h, which
is included into both foo.cc, which uses 'b', and foo_test.cc, which doesn't
use 'b'; we produce a warning when compiling foo_test.cc.</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are on the CC list for the bug.</li>
</ul>
</body>
</html>