7
votes
9answers
408 views
Why C/C++’s #pragma_once isn’t an ISO standard?
I am currently working on a big project and maintaining all those include guards makes me crazy! Writing it by hand is frustrating waste of time. Although many editors can generate …
0
votes
1answer
131 views
Is there an gcc/Xcode pragma to suppress warnings?
Is there a #pragma to have gcc/Xcode suppress specific warnings, similar to Java's @SuppressWarning annotation?
I compile with -Wall as a rule, but there are some situations where …
1
vote
1answer
65 views
Is there a list of pragmas supported in Xcode?
Is there a list of pragmas supported in Xcode? I only know of #pragma mark. Where would I look to learn about any others?
-1
votes
2answers
169 views
C++ pragma directive
What this C++ directive do: "#pragma GCC system_header"?
3
votes
1answer
100 views
Is there any #pragma or similar directive for generated C# code to match template code line numbers to C# line number?
I have a templating system that looks similar to old-style ASP code. I run this through a class that rewrites the entire thing into C# source code, compiles, and finally executes i …
2
votes
4answers
501 views
list of #pragma warning disable codes and what they mean
The syntax for disabling warnings is as follows:
#pragma warning disable 414, 3021
Or, expressed more generally:
#pragma warning disable [CSV list of numeric codes]
Is there …
1
vote
1answer
131 views
Any way in Visual Studio to not break on throwing of a specific exception?
Is there a pragma or debugger attribute which will allow the debugger to not break on the throwing of a specific exception even though under the Debug >> Exceptions menu I've told …
2
votes
3answers
137 views
How do I port code that contains #pragma optimize( “a” ) from VC++7 to VC++9 ?
I'm moving my C++ codebase from Visual Studio 2k3 to Visual Studio 2k8. Code contains
#pragma optimize( "a", on )
MSDN says that it means "assume no aliasing". Later versions of …
1
vote
1answer
194 views
Xcode - Using #pragma mark
I'm pretty sure this isn't a duplicate.
Do you use #pragma mark? I've seen multiple ways, which is correct?
#pragma mark -
#pragma mark === Actions ===
#pragma mark -
#pragma mar …
1
vote
4answers
212 views
VC++ Compiler: How to determine the current warning level or overrides?
I've got a project where I've just discovered that warning C4244 (possible loss of data) is being suppressed. I strongly suspect that some crummy MS header is suppressing this war …
10
votes
2answers
210 views
What is the difference between parent and base in Perl 5?
There appears to be a new pragma named parent that does roughly the same thing as base. What does parent do that warrants a new (non-core) module? I am missing something?
0
votes
1answer
618 views
Ignore #pragma comment(lib, …) ?
I'm attempting to perform a link of previously generated .obj files (using the latest version of MSVC).
When those .obj's were created, the source code specified:
#pragma comment …
1
vote
1answer
341 views
What is the method for optimizing individual functions in a file in GCC 4.1.1?
Various C / C++ compilers have #pragmas to control optimization.
For example:
CodeWarrior
#pragma optimization_level 0
void func_no_opt()
{
// Some Work - not optimized
}
# …
4
votes
4answers
453 views
Why isn’t this library linking with a pragma comment?
I'm using Fmod in a project I'm working on in Visual C++ 2008. If I include
../fmodapi375win/api/lib/fmodvc.lib
in Project->Linker->Input, it works fine, but for some reason if …
2
votes
3answers
394 views
Is there a way to disable all warnings with a pragma?
I've started a new project and have decided to make sure it builds cleanly with the /Wall option enabled. The only problem is not all 3rd party libraries (like boost) compile witho …
