active questions tagged warnings - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T20:27:39Z http://stackoverflow.com/feeds/tag/warnings http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/183788/c-c-compiler-warnings-do-you-clean-up-all-your-code-to-remove-them-or-leave 31 C / C++ compiler warnings: do you clean up all your code to remove them or leave them in? KPexEA 2008-10-08T17:01:18Z 2009-12-02T22:20:17Z <p>I've worked on many projects where I've been given code by others to update. More often than not I compile it and get about 1,000+ compiler warnings. When I see compiler warnings they make me feel dirty, so my first task is to clean up the code and remove them all. Typically I find about a dozen problems like uninitialized variables such.</p> <p>I don't understand why people leave them in and don't have perfectly clean compiles with no warnings. Am I missing something? Is there any valid reason to just leave them? Any horror stories to share?</p> http://stackoverflow.com/questions/183245/how-can-i-suppress-individual-biztalk-warnings-in-visual-studio-2005 2 How can I suppress individual BizTalk warnings in Visual Studio 2005 Alan Gibson 2008-10-08T15:00:29Z 2009-12-02T15:00:05Z <p>We are currently using BizTalk 2006 R2 to build Enterprise Integration solutions. We use BizTalk maps extensively, but when you build a solution in Visual Studio 2005, it produces the following warning against maps:</p> <pre><code>Warning Double-click here to show/hide compiler links. </code></pre> <p>In my opinion, these are not real warnings and can be ignored, but I don't like that strategy because ignoring warnings is a bad habit to get into.</p> <p>Using a \nowarn property does not seem to be an option because the message does not have an associated number.</p> <p>Also, when the project is built using a build script the warning disappears, suggesting that this is a feature of Visual Studio rather than a real compiler warning.</p> <p>So I was wondering if there is a way to suppress this type of warning in Visual Studio.</p> http://stackoverflow.com/questions/1741816/isystem-for-ms-visual-studio-c-compiler 0 -isystem for MS Visual Studio C++ Compiler Mathias 2009-11-16T12:14:10Z 2009-12-02T14:15:32Z <p>I usually like to have a lot of warnings enabled when programming. However, some libraries contains code that easily causes warnings (.., python, Qt, ..). When compiling with gcc I can just use -isystem instead of -I to silence that. How can I do the same with the MS compiler? I know of the warning #pragma, but I would like a solution that does not involve compiler specific code all over the place. I also know that I can turn off specific warnings, but that is not what I want either.</p> <p>BTW: isystem should be a tag of this question, but I was not allowed to do that..</p> <p>SUMMARY: I want to see <em>all</em> warnings from my code, and <em>no</em> warnings from external code.</p> http://stackoverflow.com/questions/1829904/is-there-a-way-to-ignore-a-single-findbugs-warning 0 Is there a way to ignore a single FindBugs warning? Ben S 2009-12-02T00:21:50Z 2009-12-02T01:06:01Z <p>With PMD, if you want to ignore a specific warning, you can use <code>// NOPMD</code> to have that line be ignored.</p> <p>Is there something similar for FindBugs?</p> http://stackoverflow.com/questions/1788558/non-standard-web-address-format 0 Non Standard Web Address Format Sri Kumar 2009-11-24T08:03:30Z 2009-11-24T09:33:03Z <p>Hello All,</p> <p>We sent mails to customers in our application which has a link in it. In yahoo and Hotmail, whenever the customer clicks on the link it displays following warning</p> <p><img src="http://img691.imageshack.us/img691/5402/warningp.jpg" alt="alt text"></p> <p>The URL is long encrypted query string.</p> <p>Is there any way to suppress this popup? Or How to intimate the mail server that this is not a harmful site.</p> http://stackoverflow.com/questions/1213817/why-does-modulebuilds-testcover-gives-me-use-of-uninitialized-value-warnings 0 Why does Module::Build's testcover gives me "use of uninitialized value" warnings? Kurt W. Leucht 2009-07-31T17:23:57Z 2009-11-23T17:36:34Z <p>I'm kinda new to Module::Build, so maybe I did something wrong. Am I the only one who gets warnings when I change my dispatch from "test" to "testcover"? Is there a bug in Devel::Cover? Is there a bug in Module::Build? I probably just did something wrong.</p> <p>I'm using ActiveState Perl v5.10.0 with Module::Build version 0.31012 and Devel::Cover 0.64 and Eclipse 3.4.1 with EPIC 0.6.34 for my IDE.<br /> <em>UPDATE: I upgraded to Module::Build 0.34 and the warnings are still output.</em></p> <p>Here's my unit test build file:</p> <pre><code>use strict; use warnings; use Module::Build; my $build = Module::Build-&gt;resume ( properties =&gt; { config_dir =&gt; '_build', }, ); $build-&gt;dispatch('test'); </code></pre> <p>When I run this unit test build file, I get the following output:</p> <pre><code>t\MyLib1.......ok t\MyLib2.......ok t\MyLib3.......ok All tests successful. Files=3, Tests=24, 0 wallclock secs ( 0.00 cusr + 0.00 csys = 0.00 CPU) </code></pre> <p>But when I change the dispatch line to 'testcover' I get the following output which always includes a bunch of "use of uninitialized value in bitwise and" warning messages:</p> <pre><code>Deleting database D:/Documents and Settings/&lt;username&gt;/My Documents/&lt;SNIP&gt;/cover_db t\MyLib1.......ok Use of uninitialized value in bitwise and (&amp;) at D:/Perl/lib/B/Deparse.pm line 4252. Use of uninitialized value in bitwise and (&amp;) at D:/Perl/lib/B/Deparse.pm line 4252. t\MyLib2.......ok Use of uninitialized value in bitwise and (&amp;) at D:/Perl/lib/B/Deparse.pm line 4252. Use of uninitialized value in bitwise and (&amp;) at D:/Perl/lib/B/Deparse.pm line 4252. t\MyLib3.......ok Use of uninitialized value in bitwise and (&amp;) at D:/Perl/lib/B/Deparse.pm line 4252. Use of uninitialized value in bitwise and (&amp;) at D:/Perl/lib/B/Deparse.pm line 4252. All tests successful. Files=3, Tests=24, 0 wallclock secs ( 0.00 cusr + 0.00 csys = 0.00 CPU) Reading database from D:/Documents and Settings/&lt;username&gt;/My Documents/&lt;SNIP&gt;/cover_db ---------------------------- ------ ------ ------ ------ ------ ------ ------ File stmt bran cond sub pod time total ---------------------------- ------ ------ ------ ------ ------ ------ ------ .../lib/ActivePerl/Config.pm 0.0 0.0 0.0 0.0 0.0 n/a 0.0 ...l/lib/ActiveState/Path.pm 0.0 0.0 0.0 0.0 100.0 n/a 4.8 &lt;SNIP&gt; blib/lib/&lt;SNIP&gt;/MyLib2.pm 100.0 90.0 n/a 100.0 100.0 0.0 98.5 blib/lib/&lt;SNIP&gt;/MyLib3.pm 100.0 90.9 100.0 100.0 100.0 0.6 98.0 Total 14.4 6.7 3.8 18.3 20.0 100.0 11.6 ---------------------------- ------ ------ ------ ------ ------ ------ ------ Writing HTML output to D:/Documents and Settings/&lt;username&gt;/My Documents/&lt;SNIP&gt;/cover_db/coverage.html ... done. </code></pre> http://stackoverflow.com/questions/1677824/snowleopard-xcode-warning-format-not-a-string-literal-and-no-format-arguments 3 SnowLeopard Xcode warning: "format not a string literal and no format arguments" Justin Galzic 2009-11-05T01:38:28Z 2009-11-19T15:57:28Z <p>Since upgrading to the latest XCode 3.2.1 and SnowLeopard, I've been getting the warning, </p> <blockquote> <p>"format not a string literal and no format arguments"</p> </blockquote> <p>on the following:</p> <pre><code>NSError *error = nil; if (![self.managedObjectContext save:&amp;error]) { NSLog([NSString stringWithFormat:@"%@ %@, %@", errorMsgFormat, error, [error userInfo]]); } </code></pre> <p>If 'errorMsgFormat' is an NSString with format specifiers (eg: "print me like this: %@"), what is wrong with the above NSLog statement? And what is the recommended way to fix it so that the warning isn't generated?</p> http://stackoverflow.com/questions/849898/compilation-resulting-in-double-warnings 1 Compilation resulting in double warnings gix 2009-05-11T20:19:42Z 2009-11-18T19:00:10Z <p>I have a WPF project and compilation by Visual Studio/MSBuild seems to do 2 passes, with the latter pass adding some temporary resource files, e.g.</p> <pre><code>csc &lt;options&gt; &lt;files&gt; csc &lt;options&gt; &lt;files&gt; /resource:obj\Debug\Project.g.resources </code></pre> <p>I suspect you cannot work around this (at least not without giving up code generation or XAML). But the problem I face with that is that every compiler warning is doubled. Even worse, they are in different languages! For example for me in English and German, with the first pass generating English warnings, and the second German warnings:</p> <pre><code> 5 The event 'SomeEvent' is never used Foo.xaml.cs 29 8 Unreachable code detected Bar.cs 33 34 Unerreichbarer Code wurde entdeckt. Bar.cs 33 44 Das Ereignis "SomeEvent" wird nie verwendet. Foo.xaml.cs 29 </code></pre> <p>Obviously this generates a lot of noise.</p> <p>Is this normal behavior or am I doing something wrong here? Are there any ways to improve this? It should show every warning only once, preferably in English. But everything in German would suffice, too.</p> http://stackoverflow.com/questions/492027/solution-for-element-element-is-not-a-known-element-warning-in-vs2008-when-usi 0 Solution for: Element <element> is not a known element warning in vs2008 when using User controls chris 2009-01-29T15:22:16Z 2009-11-18T17:22:41Z <p>I had a VS2008 project that was showing this warning, and I couldn't find a solution anywhere - perhaps my google-fu is weak.</p> <p>In any case, the apparent solution to this is to make sure that the TagName is the name of control class.</p> <p>So for my example, the following displayed the warning:</p> <pre><code>&lt;%@ Register Src="~/path/to/Control.ascx" TagName="tagName" TagPrefix="tagprefix" %&gt; </code></pre> <p><code> &lt;tagprefix:tagName runat="server" id="controlID" /&gt;</code></p> <p>But changing it to:</p> <pre><code>&lt;%@ Register Src="~/path/to/Control.ascx" TagName="Control" TagPrefix="tagprefix" %&gt; </code></pre> <p><code> &lt;tagprefix:Control runat="server" id="controlID" /&gt;</code></p> <p>fixes it. </p> <p>YMMV.</p> http://stackoverflow.com/questions/1755392/supressing-warnings-for-a-codeblock-using-gcc-4-1-2 1 Supressing warnings for a codeblock using gcc 4.1.2? Dan 2009-11-18T11:31:10Z 2009-11-18T12:05:47Z <p>I have a section of code that uses a Boost library that results in a lot of these type of warning messages:</p> <pre><code>class x has virtual functions but non-virtual destructor </code></pre> <p>Using g++ 4.1.2, how do I temporarily disable warnings for this codeblock then enable them again after it.</p> <p>Everything I try (pragma gcc diagnostic, etc) seems to only be supported by a later version of g++. </p> <p>How do I suppress just these warnings?</p> http://stackoverflow.com/questions/1499748/disable-flex-css-type-selector-warning 3 Disable Flex CSS type selector warning? davr 2009-09-30T18:06:07Z 2009-11-13T13:02:21Z <p>I'm building a somewhat large Flex project that includes several modules (a single Flex project that produces multiple SWFs)</p> <p>Right now, I have a single css file, being loaded in the main SWF tag:</p> <pre><code>&lt;s:Application ... &gt; &lt;fx:Style source="css/main.css" /&gt; ... &lt;/s:Application&gt; </code></pre> <p>In the CSS file:</p> <pre><code>/* CSS file */ @namespace s "library://ns.adobe.com/flex/spark"; s|Panel { skinClass: ClassReference("com.skins.DefaultPanelSkin"); } s|Button { skinClass: ClassReference("com.skins.DefaultButtonSkin"); } </code></pre> <p>The CSS file is not referenced anywhere else.</p> <p>I have currently 6 modules (plus the main SWF, a total of 7 SWFs). I've noticed that the number of warnings is correlated to the number of modules...every time I add a module, I get more warnings. Right now, I get 6 warnings for every entry in the CSS file, so:</p> <pre><code>CSS type selectors are not supported in components: 'Panel' CSS type selectors are not supported in components: 'Panel' CSS type selectors are not supported in components: 'Panel' CSS type selectors are not supported in components: 'Panel' CSS type selectors are not supported in components: 'Panel' CSS type selectors are not supported in components: 'Panel' </code></pre> <p>And repeat for Button, TextArea, etc etc. I have so many useless warnings, it is impossible to see if there are any valid ones.</p> <p>Is this warning caused by something I'm doing wrong? The styles are all being applied correctly and appears to work just the way I want at runtime. If I'm doing nothing wrong, can I tell the compiler to ignore this warning?</p> <p>NOTE: I've tried the <code>-show-unused-type-selector-warnings=false</code> compiler flag, and it does not work...that's for a similar but different warning.</p> http://stackoverflow.com/questions/1723572/what-is-the-best-solution-for-suppressing-warning-from-a-ms-include-c4201-in-mms 0 What is the best solution for suppressing warning from a MS include (C4201 in mmsystem.h) tim 2009-11-12T16:36:04Z 2009-11-12T17:05:55Z <p>I am tired of having to look at warnings during our compilations - warnings that come from MS include files.</p> <p>"C:\Program Files\Microsoft SDKs\Windows\v6.0A\include\mmsystem.h(1840): warning C4201: nonstandard extension used : nameless struct/union"</p> <p>I have seen <a href="http://www.gamedev.net/community/forums/topic.asp?topic%5Fid=368375" rel="nofollow">this thread</a> that suggests changing the header itself (but then each of my team mates has to do it and we have to do it on the build server - not to mention it is a glorious HACK)</p> <p>Is there a better way? I don't want to turn it off globally - just to suppress it for certain files or directories.</p> <p>Any suggestions? </p> <p>EDIT For some stupid reason I didn't think I could set warning levels across include files. Thanks - that does the trick.</p> http://stackoverflow.com/questions/1521466/how-to-catch-and-display-warnings-to-the-user -1 How to catch and display warnings to the user. nportelli 2009-10-05T17:53:41Z 2009-11-12T14:21:09Z <p>Essentially the warning in our case is just a validation, we don't want to mark it as an error just a warning so the user knows. I was hoping to use the same or similar method used for validation. Currently I'm leaning towards implementing IDataErrorInfo. But I'd like to change the style on display and allow saving. Has anyone done anything similar? I don't want 2 separate solutions for validation.</p> http://stackoverflow.com/questions/1709388/run-nosetests-with-warnings-as-errors 0 Run nosetests with warnings as errors? Jon-Eric 2009-11-10T16:45:00Z 2009-11-10T17:16:31Z <p>When running <code>nosetests</code> from the command line, how do you specify that 'non-ignored' warnings should be treated as errors?</p> <p>By default, warnings are printed, but not counted as failures:</p> <pre><code>[snip]/service/accounts/database.py:151: SADeprecationWarning: Use session.add() self.session.save(state) [snip]/service/accounts/database.py:97: SADeprecationWarning: Use session.add() self.session.save(user) ............ ---------------------------------------------------------------------- Ran 12 tests in 0.085s OK </code></pre> <p>As we don't want our code to generate warnings, I don't want this situation to be <code>OK</code>.</p> <p>Thanks!</p> <p><strong>Edit:</strong> Ideally what I'd like is a nosetests command line option that issues a <code>warnings.simplefilter('error')</code> prior to each test (and cleans it out afterwards).</p> <p>Any solution that involves using the <code>warnings</code> module in the test code seems to defeat the point. I don't want to manually edit each test module to transform warnings into errors. Plus I don't want the author of each test module to be able to forget to 'turn on' warning errors.</p> http://stackoverflow.com/questions/1680904/why-does-perl-complain-about-use-of-uninitialized-value-in-my-cgi-script 0 Why does Perl complain about "Use of uninitialized value" in my CGI script? Mike 2009-11-05T14:27:42Z 2009-11-08T19:05:53Z <p>I am cleaning my Perl code for production release and came across a weird warning in the Apache error log.</p> <p>It says:</p> <p><code>[Thu Nov 5 15:19:02 2009] Clouds.pm: Use of uninitialized value $name in substitution (s///) at /home/mike/workspace/olefa/mod-bin/OSA/Clouds.pm line 404.</code></p> <p>The relevant code is here:</p> <pre><code>my $name = shift @_; my $name_options = shift @_; $name_options = $name_options eq 'unique' ? 'u' : $name_options eq 'overwrite' ? 'o' : $name_options eq 'enumerate' ? 'e' : $name_options =~ m/^(?:u|o|e)$/ ? $name_options : q(); if ($name_options ne 'e') { $name =~ s/ /_/g; } </code></pre> <p>So, why the warning of an uninitialized variable as it is clearly initialized?</p> http://stackoverflow.com/questions/1681174/besides-treat-warnings-as-errors-and-fixing-memory-leaks-what-other-ideas-shou 10 Besides "treat warnings as errors" and fixing memory leaks, what other ideas should we implement as part of our coding standards? zerocl 2009-11-05T15:13:30Z 2009-11-06T16:27:25Z <p>First let me say, I am not a coder but I help manage a coding team. No one on the team has more than about 5 years experience, and most of them have only worked for this company.. So we are flying a bit blind, hence the question.</p> <p>We are trying to make our software more stable and are looking to implement some "best practices" and coding standards. Recently we started taking this very seriously as we determined that much of the instability in our product could be linked back to the fact that we allowed Warnings to go through without fixing when compiling. We also never bothered to take memory leaks seriously enough. </p> <p>In reading through this site we are now quickly fixing this problem with our team but it begs the question, what other practices can we implement team wide that will help us? </p> <p>Edit: We do fairly complex 2D/3D Graphics Software that is cross-platform Mac/Windows in C++.</p> http://stackoverflow.com/questions/1688465/resharper-warning-access-to-modified-closure 3 ReSharper Warning - Access to Modified Closure Matt Grande 2009-11-06T15:52:46Z 2009-11-06T16:01:04Z <p>I have the following code:</p> <pre><code>string acctStatus = account.AccountStatus.ToString(); if (!SettableStatuses().Any(status =&gt; status == acctStatus)) acctStatus = ACCOUNTSTATUS.Pending.ToString(); </code></pre> <p>Note that account.AccountStatus is an enum of type ACCOUNTSTATUS. On the second line, ReSharper is giving me the warning "Access to Modified Closure" for acctStatus. When I do the recommended operation, <em>Copy to local variable</em>, it modifies the code to the following:</p> <pre><code>string acctStatus = realAccount.AccountStatus.ToString(); string s = acctStatus; if (!SettableStatuses().Any(status =&gt; status == s)) acctStatus = ACCOUNTSTATUS.Pending.ToString(); </code></pre> <p>Why is this better or preferable to what I had originally?</p> <p><strong>EDIT</strong></p> <p>It also recommends <em>Wrap local variable in array</em>, which produces:</p> <pre><code>string[] acctStatus = {realAccount.AccountStatus.ToString()}; if (!SettableStatuses().Any(status =&gt; status == acctStatus[0])) acctStatus[0] = ACCOUNTSTATUS.Pending.ToString(); </code></pre> <p>This seems downright wacky to me.</p> http://stackoverflow.com/questions/1684854/how-to-get-rid-of-these-warnings-after-installing-zend-core 0 How to get rid of these warnings after installing zend core? Mask 2009-11-06T01:33:54Z 2009-11-06T08:42:39Z <p>Really annoying!</p> <pre><code>PHP Warning: PHP Startup: bcmath: Unable to initialize module Module compiled with module API=20060613, debug=0, thread-safety=0 PHP compiled with module API=20060613, debug=0, thread-safety=1 These options need to match in Unknown on line 0 PHP Warning: PHP Startup: curl: Unable to initialize module Module compiled with module API=20060613, debug=0, thread-safety=0 PHP compiled with module API=20060613, debug=0, thread-safety=1 These options need to match in Unknown on line 0 PHP Warning: PHP Startup: gd: Unable to initialize module Module compiled with module API=20060613, debug=0, thread-safety=0 PHP compiled with module API=20060613, debug=0, thread-safety=1 These options need to match in Unknown on line 0 PHP Warning: PHP Startup: imap: Unable to initialize module Module compiled with module API=20060613, debug=0, thread-safety=0 PHP compiled with module API=20060613, debug=0, thread-safety=1 These options need to match in Unknown on line 0 PHP Warning: PHP Startup: mbstring: Unable to initialize module Module compiled with module API=20060613, debug=0, thread-safety=0 PHP compiled with module API=20060613, debug=0, thread-safety=1 These options need to match in Unknown on line 0 PHP Warning: PHP Startup: soap: Unable to initialize module Module compiled with module API=20060613, debug=0, thread-safety=0 PHP compiled with module API=20060613, debug=0, thread-safety=1 These options need to match in Unknown on line 0 PHP Warning: PHP Startup: sockets: Unable to initialize module Module compiled with module API=20060613, debug=0, thread-safety=0 PHP compiled with module API=20060613, debug=0, thread-safety=1 These options need to match in Unknown on line 0 PHP Warning: PHP Startup: mysqli: Unable to initialize module Module compiled with module API=20060613, debug=0, thread-safety=0 PHP compiled with module API=20060613, debug=0, thread-safety=1 These options need to match in Unknown on line 0 PHP Warning: PHP Startup: mysql: Unable to initialize module Module compiled with module API=20060613, debug=0, thread-safety=0 PHP compiled with module API=20060613, debug=0, thread-safety=1 These options need to match in Unknown on line 0 PHP Warning: PHP Startup: pdo_mysql: Unable to initialize module Module compiled with module API=20060613, debug=0, thread-safety=0 PHP compiled with module API=20060613, debug=0, thread-safety=1 These options need to match in Unknown on line 0 PHP Warning: PHP Startup: pdo_pgsql: Unable to initialize module Module compiled with module API=20060613, debug=0, thread-safety=0 PHP compiled with module API=20060613, debug=0, thread-safety=1 These options need to match in Unknown on line 0 PHP Warning: PHP Startup: pgsql: Unable to initialize module Module compiled with module API=20060613, debug=0, thread-safety=0 PHP compiled with module API=20060613, debug=0, thread-safety=1 These options need to match in Unknown on line 0 ^C </code></pre> http://stackoverflow.com/questions/1682639/any-way-to-silence-the-uidevice-setorientation-warning 0 Any way to silence the UIDevice setOrientation warning? Epsilon Prime 2009-11-05T18:35:54Z 2009-11-05T23:10:23Z <p>Anyone have a simple way to silence the undocumented UIDevice setOrientation warning?</p> <p>I found this <a href="http://www.iphonedevsdk.com/forum/iphone-sdk-development/5440-silent-uipickerview.html" rel="nofollow">piece of code</a> that silences the undocumented UIPickerView setSoundsEnabled warning.</p> http://stackoverflow.com/questions/1486904/how-do-i-best-silence-a-warning-about-unused-variables 4 How do I best silence a warning about unused variables? Phil Hannent 2009-09-28T13:04:07Z 2009-11-03T21:03:02Z <p>I have a cross platform application and in a few of my functions not all the values passed to functions are utilised. Hence I get a warning from GCC telling me that there are unused variables.</p> <p>What would be the best way of coding around the warning?</p> <p>An #ifdef around the function? </p> <pre><code>#ifdef _MSC_VER void ProcessOps::sendToExternalApp(QString sAppName, QString sImagePath, qreal qrLeft, qreal qrTop, qreal qrWidth, qreal qrHeight) #else void ProcessOps::sendToExternalApp(QString sAppName, QString sImagePath, qreal /*qrLeft*/, qreal /*qrTop*/, qreal /*qrWidth*/, qreal /*qrHeight*/) #endif { </code></pre> <p>This is so ugly but seems like the way the compiler would prefer.</p> <p>Or do I assign zero to the variable at the end of the function? (which I hate because it's altering something in the program flow to silence a compiler warning).</p> <p>Is there a correct way?</p> http://stackoverflow.com/questions/1663086/remove-warning-in-myeclipse 0 Remove warning in MyEclipse Lord Torgamus 2009-11-02T19:14:32Z 2009-11-03T07:21:22Z <p>How can I modify the conditions for which MyEclipse will throw up warning flags? I'd be happy to hear a generic solution, but here is my specific problem for the curious/if it turns out to be relevant:</p> <pre><code>&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;wicket:panel&gt; &lt;p&gt; &lt;object type="text/html" width="750" height="360" wicket:id="htmlRendition"&gt;&lt;/object&gt; &lt;/wicket:panel&gt; &lt;/html&gt; </code></pre> <p>causes warnings "Undefined attribute name (xmlns)," "Unknown tag (wicket:panel)" and "Undefined attribute name (wicket:id)." Oddly, there are no errors for most HTML files paired with Wicket Java files, only files with the format <code>ClassName$InnerClassName.html</code>.</p> http://stackoverflow.com/questions/515803/should-i-disable-the-c-compiler-signed-unsigned-mismatch-warning 4 Should I disable the C compiler signed/unsigned mismatch warning? Steve Hanov 2009-02-05T13:03:53Z 2009-11-02T20:14:01Z <p>The Microsoft C compiler warns when you try to compare two variables, and one is signed, and the other is unsigned. For example:</p> <pre><code>int a; unsigned b; if ( a &lt; b ) { // warning C4018: '&amp;lt;' : signed/unsigned mismatch } </code></pre> <p>Has this warning, in the history of the world, ever caught a real bug? Why's it there, anyway?</p> http://stackoverflow.com/questions/1622493/bison-build-warning-s-option-given-but-default-rule-can-be-matched 0 Bison build warning: "-s option given but default rule can be matched" acidzombie24 2009-10-25T23:36:53Z 2009-11-01T10:27:49Z <p>I get the warning</p> <pre><code>warning, -s option given but default rule can be matched </code></pre> <p>if you google</p> <pre><code>option given but default rule can be matched </code></pre> <p>You'll get results of <a href="http://flex.sourceforge.net/manual/Diagnostics.html" rel="nofollow">flex homepage</a> and an entry in a <a href="http://dinosaur.compilertools.net/flex/manpage.html" rel="nofollow">man page</a>.</p> <blockquote> <p><code>warning, -s option given but default rule can be matched' means that it is possible (perhaps only in a particular start condition) that the default rule (match any single character) is the only one that will match a particular input. Since </code>-s' was given, presumably this is not intended.</p> </blockquote> <p>My build file doesnt have a -s option. I wrote</p> <pre><code>bison -y -d calc1.y flex calc1.l gcc code... </code></pre> <p>How do i fix this warning?</p> <p>Here is a tiny version of my lex file. This file also triggers the warning</p> <pre><code>%{ #include "y.tab.h" %} %option noyywrap nodefault yylineno %% [0-9]+ { return INTEGER; } [-+()=/*{},;\n] { return *yytext; } [ \t] /* skip whitespace */ [a-zA-Z0-9_]* { printf("lex Unknown character = '%s'", yytext); yyerror("lex Unknown character"); } %% </code></pre> http://stackoverflow.com/questions/1649221/suppressing-objective-c-warnings 0 Suppressing Objective-C Warnings Biranchi 2009-10-30T11:12:45Z 2009-10-30T15:12:55Z <p>Hi all,</p> <p>Is there any way to suppress Compiler warnings ??</p> <p>Thanks</p> http://stackoverflow.com/questions/610586/why-does-perl-complain-about-barewords-in-my-win32ole-script 2 Why does Perl complain about barewords in my Win32::OLE script? Pankaj 2009-03-04T13:40:59Z 2009-10-30T12:01:18Z <pre><code>#___ FIND LAST ROW/COLUMN WITH DATA my $row = $Sheet1 -&gt; UsedRange -&gt; Find( { What =&gt; "*", SearchDirection =&gt; xlPrevious, SearchOrder =&gt; xlByRows })-&gt; {Row}; </code></pre> <p>Error:</p> <pre><code>Bareword "xlByRows" not allowed while "strict subs" in use. </code></pre> http://stackoverflow.com/questions/1643537/how-to-deal-with-wconversion-warnings-from-gcc 1 How to deal with -Wconversion warnings from GCC? James Morris 2009-10-29T12:58:21Z 2009-10-29T14:31:11Z <p>I'm building my project with GCC's -Wconversion warning flag. (gcc (Debian 4.3.2-1.1) 4.3.2) on a 64bit GNU/Linux OS/Hardware. I'm finding it useful in identifying where I've mixed types or lost clarity as to which types should be used.</p> <p>It's not so helpful in most of the other situations which activate it's warnings and I'm asking how am I meant to deal with these:</p> <pre><code>enum { A = 45, B, C }; /* fine */ char a = A; /* huh? seems to not warn about A being int. */ char b = a + 1; /* warning converting from int to char */ char c = B - 2; /* huh? ignores this *blatant* int too.*/ char d = (a &gt; b ? b : c) /* warning converting from int to char */ </code></pre> <p>Due to the unexpected results of the above tests (cases <code>a</code> and <code>c</code>) I'm also asking for these differences to be explained also.</p> <p>Edit: And is it over-engineering to cast all these with <code>(char)</code> to prevent the warning?</p> <p>Edit2: Some extra cases (following on from above cases):</p> <pre><code>a += A; /* warning converting from int to char */ a++; /* ok */ a += (char)1; /* warning converting from int to char */ </code></pre> <p>Aside from that, what I'm asking is subjective and I'd like to hear how other people deal with the conversion warnings in cases like these when you consider that some developers advocate removing <em>all</em> warnings.</p> <p>YAE:</p> <p>One possible solution is to just use <code>int</code>s instead of <code>char</code>s right? Well actually, not only does it require more memory, it is slower too, as can been demonstrated by the following code. The maths expressions are just there to get the warnings when built with <code>-Wconversion</code>. I assumed the version using <code>char</code> variables would run slower than that using <code>int</code>s due to the conversions, but on my (64bit dual core II) system the <code>int</code> version is slower.</p> <pre><code>#include &lt;stdio.h&gt; #ifdef USE_INT typedef int var; #else typedef char var; #endif int main() { var start = 10; var end = 100; var n = 5; int b = 100000000; while (b &gt; 0) { n = (start - 5) + (n - (n % 3 ? 1 : 3)); if (n &gt;= end) { n -= (end + 7); n += start + 2; } b--; } return 0; } </code></pre> <p>Pass <code>-DUSE_INT</code> to gcc to build the int version of the above snippet.</p> http://stackoverflow.com/questions/879173/how-to-ignore-deprecation-warnings-in-python 7 How to ignore deprecation warnings in Python Mohammed 2009-05-18T18:42:44Z 2009-10-28T23:24:01Z <p>I keep getting this :</p> <pre><code>DeprecationWarning: integer argument expected, got float </code></pre> <p>How do I make this message go away? Is there a way to avoid warnings in Python?</p> http://stackoverflow.com/questions/1639503/mysql-command-line-empty-set-1-warning-0-01-sec 0 mysql command line. Empty set, 1 warning (0.01 sec) An employee 2009-10-28T19:21:13Z 2009-10-28T19:23:55Z <p>How do i view the warning(s) after a SELECT query? The results of one query is </p> <pre><code>Empty set, 1 warning (0.01 sec) </code></pre> <p>I am using mysql via command line on linux.</p> http://stackoverflow.com/questions/491007/jboss-what-does-the-warning-ejbthree-1246-from-the-interceptorregistry-mean 5 JBoss: What does the warning EJBTHREE-1246 from the InterceptorRegistry mean? Simon Lehmann 2009-01-29T09:30:28Z 2009-10-28T10:19:46Z <p>I am currently developing an EJB 3.0 based application on the JBoss AS 5.0.0.GA and just recently the following warning showed up in the server log:</p> <pre> 09:50:19,735 WARN [InterceptorsFactory] EJBTHREE-1246: Do not use InterceptorsFactory with a ManagedObjectAdvisor, InterceptorRegistry should be used via the bean container 09:50:19,735 WARN [InterceptorsFactory] EJBTHREE-1246: Do not use InterceptorsFactory with a ManagedObjectAdvisor, InterceptorRegistry should be used via the bean container 09:50:19,735 WARN [InterceptorRegistry] applicable interceptors is non-existent for ... ... </pre> <p>The warnings are generated as soon as an EJB (a stateless session bean) is injected into a backing bean of my JSF web-application. The beans do work without problems though, but I still would like to know where that warning comes from and what I can do to avoid it.</p> <p>I have already searched a bit around, but haven't found a good answer (some say, bean developers do not have to worry, but its a warning, so I'd like to have a better solution):</p> <ul> <li><a href="http://www.jboss.com/index.html?module=bb&amp;op=viewtopic&amp;t=147292" rel="nofollow">http://www.jboss.com/index.html?module=bb&amp;op=viewtopic&amp;t=147292</a></li> <li><a href="http://www.jboss.com/index.html?module=bb&amp;op=viewtopic&amp;p=4180366" rel="nofollow">http://www.jboss.com/index.html?module=bb&amp;op=viewtopic&amp;p=4180366</a></li> <li><a href="http://www.jboss.com/index.html?module=bb&amp;op=viewtopic&amp;p=4140136" rel="nofollow">http://www.jboss.com/index.html?module=bb&amp;op=viewtopic&amp;p=4140136</a></li> <li><a href="https://jira.jboss.org/jira/browse/EJBTHREE-1246" rel="nofollow">JBoss JIRA Issue about the warning</a> (Not that helpful in my opinion)</li> </ul> <p>So has anyone an explanation what causes the warning (in terms of a bean developer, not application server developer) and what to do to avoid it?</p> <p><strong>Update:</strong> I've just upgraded JBoss to 5.0.1.GA (<a href="http://www.jboss.org/downloading/?projectId=jbossas&amp;url=https://sourceforge.net/project/showfiles.php?group%5Fid=22866&amp;package%5Fid=16942&amp;release%5Fid=663566" rel="nofollow">Download</a>, <a href="https://sourceforge.net/project/shownotes.php?release%5Fid=663566&amp;group%5Fid=22866" rel="nofollow">Release-Notes</a>) but unfortunatly the warning still appears.</p> http://stackoverflow.com/questions/1615844/unnecessary-xcode-warning 0 unnecessary (?) Xcode warning Everett 2009-10-23T20:56:20Z 2009-10-23T21:20:01Z <p>I'm running Xcode in OS X 10.6 on a Core 2 Duo. Here's a short program:</p> <pre><code>#include &lt;stdio.h&gt; int main () { long a = 8589934592L; printf("a = %li\n", a); return 0; } </code></pre> <p>When I compile this from the command line (gcc -pedantic) I get no errors or warning. When I compile this in Xcode in debug configuration, I get no errors or warnings. When I compile this in Xcode in release configuration, I get a warning: "Overflow in implicit constant conversion".</p> <p>Longs should be 64-bit. And the program runs fine. So what's going on, and how do I get rid of this warning?</p>