1
vote
2answers
45 views
Typedef inside/outside anonymous namespace?
In a .cpp file, is there any difference/preference either way?
// file scope outside any namespace
using X::SomeClass;
typedef SomeClass::Buffer MyBuf;
v/s
namespace { // anonymous
using …
1
vote
2answers
32 views
How to use a c-type array as an ivar?
I need a good old-fashioned 2-dimensional array of integers in my program, but no matter how I try to declare it as an ivar, and then use @property/@synthesize, I get one compiler complaint or …
1
vote
2answers
352 views
documentation of gnu assembler directives
I'm trying to learn mips assembly at the moment. To that end, I wrote a very simple c program...
int main(){}
...and compiled it on a mips machine with the -S option to gcc to generate assembly …
0
votes
0answers
59 views
What is meant by the Passenger-enabled Nginx error ‘rack_env directive is duplicate’?
When we try to start Nginx, we see this error that prevents Nginx from starting. The error exactly is:
"rack_env" directive is duplicate
We have set rails_env and rack_env... does this conflict in …
2
votes
8answers
378 views
C++ #define preprocessor
I need to know that does the #define directive in C++ declares global label? By global I mean visible in every file?
I'm using Visual Studio 2008, (guess if that matters)
0
votes
0answers
11 views
“rela.dyn”, is it a must in linker directives?
Is rela.dyn section required in all linker directives even if you just want a static library to be linked?
I do not want dynamic relocation of libraries(dynamic linker or run-time loader)? Should I …
0
votes
0answers
45 views
SSI escape HTML output
When i use SSI directive is there any way to escape variable with HTML entities?
<META HTTP-EQUIV="Refresh" CONTENT="10; URL="/index.shtml?r=<!--#echo var="HTTP_REFERER" -->">
Thx in …
0
votes
5answers
361 views
c# Pre-processor directive scope
Im looking to use:
#define
and
#if
to allow me to simulate potentially absent hardware during unit tests. What are the rules for useing the #define statements?
i.e. what is its default scope? …
0
votes
1answer
100 views
Register directive for controls in App_Code with no namespace
I know that if I created a custom control, say MyLabel in App_Code ..
namespace MyNamespace
{
public class MyLabel : Label { .. }
}
To access this control in my page, I would use this directive …
2
votes
2answers
156 views
Visual C++: How to embed and display a compile time message in code?
Is there a way to embed a message in code that is displayed during compile-time when that piece of code is being compiled? The messages are diagnostic in nature and should not modify or abort the …
4
votes
1answer
252 views
Conditional compilation based on a compiler directive in Delphi 2009
Is there a way in Delphi 2009 to have a section of code conditionally compiled based on a compiler directive. Specifically, I'd like to have code in place that is only included if the range-check …
0
votes
2answers
86 views
How to include a file depending on a request attribute using the include directive
I would like to include a file depending on a request attribute value.
${theme} -> themeA
To sum up. I would like something like this:
<%@ include …
2
votes
5answers
380 views
How would you do the equivalent of preprocessor directives in Python?
Is there a way to do the following preprocessor directives in Python?
#if DEBUG
< do some code >
#else
< do some other code >
#endif
1
vote
4answers
249 views
Delphi and pointermath (possible bug in the documentation)
I was browsing the Delphi 2009 language guide. And found something strange. In the list of directives (not compiler directives) I found pointermath.
RAD-Studio
Reference
Delphi Reference
…
0
votes
3answers
334 views
Can specific Delphi hints be disabled?
In Delphi, you can use compiler directives to disable specific warnings, such as
{$WARN USE_BEFORE_DEF OFF}
But when I tried to do that with a specific hint, whose underscore_style_name I got out …
