Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

34
votes
5answers
1k views

Where does the word “pragma” come from?

So I know what pragma is, and what it's used for, but what is the meaning of the word itself? I've used it many times in code, but I never really knew what the word actually means or stands for.
14
votes
2answers
2k 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?
13
votes
2answers
6k views

What does the HTTP header Pragma: Public mean?

What does the HTTP header Pragma: Public mean?
12
votes
8answers
2k views

What code have you written with #pragma you found useful?

I've never understood the need of #pragma once when #ifndef #define #endif always works. I've seen the usage of #pragma comment to link with other files, but setting up the compiler settings was ...
12
votes
6answers
2k views

Should I turn on Perl warnings with the command-line switch or pragma?

Is there a difference between the two examples below for beginning a Perl script? If so, when would I use one over the other? example 1: #!/usr/bin/perl use warnings; example 2: #!/usr/bin/perl ...
10
votes
4answers
890 views

#pragma mark not showing in methods in Xcode 4.0

In Xcode Version 4.0 I notice that #pragma marks within methods are no longer showing up in the Jump Bar. The only #pragma marks that are showing up are those that are between methods. I was using ...
10
votes
11answers
790 views

Why isn't C/C++'s “#pragma once” 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 include guards this ...
9
votes
3answers
2k views

Android database corrupt, but can open in SQLite Manager. Recoverable?

In the latest two weeks, without releasing an update to my app, I have started getting a bunch of reports with corrupted databases. Below is the stacktrace. Android cannot open the database, and ...
8
votes
6answers
345 views

What is the reason for #pragma once inside header guards?

Just seen this inside <boost/asio.hpp> #ifndef BOOST_ASIO_HPP #define BOOST_ASIO_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif // defined(_MSC_VER) && ...
8
votes
3answers
843 views

How to disable GCC warnings for a few lines of code

In Visual C++, it's possible to use #pragma warning (disable: ...). Also I found that in GCC you can override per file compiler flags. How can I do this for "next line", or with push/pop semantics ...
8
votes
3answers
3k views

C/C++ pragma in define macro

is there some way to embed pragma statement in macro with other statements? I am trying to achieve something like: #define DEFINE_DELETE_OBJECT(type) \ void delete_ ## ...
7
votes
1answer
107 views

disable #pragma message(“…”) in Visual C++?

I am consuming a header file that's peppered with annoying messages like: // annoying.h: #pragma message("Compiling " __FILE__ ) I would prefer a clean build output when there are no actual ...
7
votes
3answers
204 views

Is there a reason to use warnings before use strict?

I remember seeing some comment somewhere that use warnings; use strict; was preferable (rather than use'ing strict first, as I was wont to do). Is my memory correct? Does the order matter and, if ...
7
votes
3answers
595 views

Did `#pragma once` make it into C++0x?

The question say it all. Have #pragma once been standardized for C++0x? I don't know any compiler that don't provide and implementation of it, with almost always the same semantic and name.
7
votes
4answers
1k views

Is using #pragma warning push/pop the right way to temporarily alter warning level?

Once in a while it's difficult to write C++ code that wouldn't emit warnings at all. Having warnings enabled is however a good idea. So it is often necessary to disable warnings around some specific ...
7
votes
1answer
501 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 it to break when any ...
7
votes
3answers
3k views

C#: Is pragma warning restore needed?

From msdn I get this: #pragma warning disable warning-list #pragma warning restore warning-list In the examples, both disable and restore are used. Is it necessary to restore if I want it disabled ...
6
votes
1answer
124 views

How to use intel prefetch pragma when data hidden inside an object?

Intel helpfully provides a prefetch pragma; for example #pragma prefetch a for(i=0; i<m; i++) a[i]=b[i]+1; will prefetch a a certain number of loop cycles ahead, as determined by the compiler. ...
6
votes
2answers
413 views

How to hint to GCC that a line should be unreachable?

It's common for compilers to provide a switch to warn when code is unreachable. I've also seen macros for some libraries, that provide assertions for unreachable code. Is there a hint, such as ...
6
votes
4answers
548 views

Can I enable/disable breaking on Exceptions programatically?

I want to be able to break on Exceptions when debugging... like in Visual Studio 2008's Menu Debug/Exception Dialog, except my program has many valid exceptions before I get to the bit I wish to ...
6
votes
1answer
4k 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 mark - #pragma mark === ...
6
votes
5answers
16k views

use of #pragma in c

can u tell me usage of #pragma in c with an example
6
votes
4answers
12k views

How to disable #pragma warnings?

While developing a C++ application, I had to use a 3rd party library which produced a huge amount of warnings related with a harmless #pragma directive being used. ../File.hpp:1: warning: ignoring ...
5
votes
1answer
178 views

How to avoid ugly code resolving this problem in Haskell (LANGUAGE extentions)?

I'm trying to write a program that simulates several creatures in a world. Basically the word sends a message over a list of creatures, and each creature gives his response, which in turn modifies the ...
5
votes
1answer
278 views

Suppress “does not implement protocol” warning in GCC

I want to suppress a particular warning while developing an iPhone app in Xcode. The warning is: "warning: class 'XXX' does not implement the 'XYZ' protocol" I understand I use the directive: ...
5
votes
2answers
234 views

Intentional compiler warnings for Visual C++ that appear in Error List?

How can you create a compiler warning (in the model of #error, except as a warning) on purpose in Visual C++ that will show up on the Error List with the correct file and line number? GCC and other ...
5
votes
1answer
2k 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?
5
votes
4answers
3k 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 I use #pragma ...
5
votes
3answers
2k 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 without warnings, so I've ...
4
votes
1answer
82 views

Alternatives to #pragma that work inside methods in XCode 4

As mentioned elsewhere, #pragmas inside methods don't work in XCode 4. What's a good way to do quick navigation to different sections within a long method, for example to specific cases of a switch ...
4
votes
1answer
98 views

OpenMP: conditional use of #pragma

I'm using OpenMP to improve my program efficiency on loops. But recently I discovered that on small loops the use of this library decreased performances and that using the normal way was better. In ...
4
votes
1answer
78 views

Spaces in the name is breaking the download?

Ok so i have this code that will allow a user to download a song $file = DIR_DOWNLOAD . $download_info->row['filename']; $mask = basename($download_info->row['mask']); $mime = ...
4
votes
2answers
421 views

How to use GCC diagnostic pragma with C++ template functions?

I would like to use g++ and -Werror, so I have now to disable warnings for 3rd-party libraries I have no control of. The solution provided by http://gcc.gnu.org/onlinedocs/gcc/Diagnostic-Pragmas.html ...
4
votes
3answers
502 views

How can I use #pragma message() so that the message points to the file(lineno)?

In order to add 'todo' items into my code, I want to put a message in the compiler output. I would like it to look like this: c:/temp/main.cpp(104): TODO - add code to implement this in order to ...
4
votes
3answers
454 views

What is the scope of a pragma directive?

What is the scope of a pragma directive? For example, if I say #pragma warning(disable: 4996) in a header file A that is included from a different file B, will that also disable all those warnings ...
4
votes
1answer
804 views

pragma directive in UIViewController

When i create a UITableViewController class, the template has some #pragma directives: #pragma mark - #pragma mark View lifecycle at the start and: #pragma mark - #pragma mark Table view data ...
4
votes
4answers
857 views

Disable structure padding in C without using pragma

How can I disable structure padding in C without using pragma?
4
votes
1answer
538 views

C++ #pragma pack

What does the following statement actually do and what are it's effects? #pragma pack(push,8)
4
votes
1answer
366 views

linking with a pragma with g++

In Visual C++, one may link to a library in the code itself by doing #pragma comment (lib, "libname.lib"). Is something similar possible in g++?
4
votes
4answers
1k views

Any way to group methods in Java/Eclipse?

I would like to be able to group similar methods and have them appear in my Outline view in Eclipse. This makes navigating large swaths of code a little easier on the eye, and easier to find methods ...
4
votes
2answers
189 views

What is the use of #pragma warning in C#?

I just saw this code #pragma warning disable 659, 660, 661 MSDN article is not helping much. What is the usage of this line?
4
votes
1answer
380 views

Pragmas swp,ivdep,prefetch support in various compilers

In good Altix manual (altix_single_cpu_optimization http://wwwuser.gwdg.de/~parallel/parallelrechner/altix_documentation/altix_single_cpu_optimization.pdf ) I've found this list of pragmas-hints for ...
4
votes
3answers
1k views

#pragma init and #pragma fini using gcc compiler on linux

I would like to build some code which calls some code on loadup of the shared library. I thought i would do it like this: #pragma init(my_init) static void my_init () { //do-something } int add ...
4
votes
1answer
394 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 it. What I'm ...
3
votes
2answers
55 views

Can PHP introspect or detect tag's current indent level within source document?

For those of us still inlining PHP within an HTML structure, is there a way to introspect the indent level (within the source) of the current PHP statement/tag being evaluated? Consider the following ...
3
votes
3answers
82 views

Perl: Is Single Evaluation on Constants Guaranteed?

Third Perl question from me in two days. Some will say I'm not researching hard enough, although I will say I'm helping keep the section active :P Either way, I'm pondering out loud in hope for an ...
3
votes
1answer
94 views

How to tell GCC that input file is assembler even if it's really .c?

I have an unusual situation: I have an assembler file, which has .c extension and I cannot change build scripts, where this file is defined as "C" type. However, I can build it with the same GCC ...
3
votes
1answer
185 views

C#: Using pragma intrinsic(sqrt, pow) in C#?

C++ Summary Using the #pragma intrinsic command in the preprocessor section of your code will greatly increase the speed of most math function calls. #pragma intrinsic(sqrt, pow) The above code ...
3
votes
2answers
109 views

pragma base - warnings question

When I run this, why do I not get the Attempting to inherit from yourself generates a warning. (base#DIAGNOSTICS)? #!/usr/bin/env perl use warnings; use diagnostics; use 5.012; { package ...
3
votes
3answers
945 views

Cannot create Android SQLite database: PRAGMA error

Errors: E/Database( 8614): Failure 21 (out of memory) on 0x0 when preparing 'PRAGMA user_version = 1'. E/Database( 8614): Failure 21 (out of memory) on 0x0 when preparing 'ROLLBACK;'. D/Database( ...

1 2 3