The compiler-directives tag has no wiki summary.
2
votes
2answers
60 views
How to use the #error directive - C++
I'm creating a self initializing arrays class in C++ and i'm wondering how i'd throw an error not an exception if a user were to try and allocate more than 0x7fffffff bytes.
Similar to where:
error ...
0
votes
0answers
10 views
Key Apache Server Directives that Directly Affect Load Time in LAMP Applications
I need the list of apache directives that effect positively on the performance of webpage and a list negatively on the performance of the webpage.
Here is the link to the list of apache directives.
...
0
votes
1answer
16 views
How to acces scope from compiler function directive?
I have a directive building html based on an array sent as attribute. I can't access it from the compiler function of the directive. It works inside the link function, but I need in inside the ...
0
votes
1answer
41 views
How to force execution of value assignment in blocks of type <%=value%>
is there a directive or a instruction to force the execution of the blocks of type <%=value%> in webpages?, because i have a web project in which i have a block of that type and it just evaluates ...
0
votes
0answers
9 views
what does MINIMUM_RAM directive mean?
I have seen this in a code like this:
#if !MINIMUM_RAM
public override bool funcA(some parms)
{
...
}
What does this directive mean? Can we put it anywhere or just before method names? Please ...
3
votes
2answers
161 views
What is the purpose of {.$DEFINE VAR} instead of {$DEFINE VAR} in Delphi
What is the difference in Delphi between using {.$DEFINE VAR} and {$DEFINE VAR} compiler directives ?
2
votes
1answer
70 views
Using compiler directives for conditional attributes
I wish to make an attribute conditional based on compilation mode.
For example this is MyFunction() which is decorated with the attribute MyAttribute():
<MyAttribute()>
Private Function ...
7
votes
3answers
281 views
How can I tell at compile time whether the project is a program or a library?
I'm trying to know if the project is a library or not, after read the help I wrote this code that does not work:
{$IF DEFINED(LIBPREFIX)}
{$DEFINE PROJECT_IS_EXECUTABLE}
{$UNDEF ...
1
vote
1answer
239 views
How do I test for compiler directives with an MSBuild Condition in a .csproj file?
I am totally new to the functions and conditions in .csproj files so any and all help is appreciated.
What I want to do is check for a specific compiler directive in the current configuration. An ...
0
votes
4answers
94 views
Where to write @property directive in Objective-C?
code1
@interface Rectangle : NSObject
{
int width,height;
}
@property int width,height;
code2
@interface Rectangle : NSObject
@property int width,height;
{
int width,height;
}
Can ...
0
votes
1answer
303 views
Can I have gcc ignore #warning directives
I am writing code that links to something that has many #warning directives scattered throughout. Seeing them pop up every time makes it very difficult to notice warnings in my own code. Is there a ...
0
votes
1answer
40 views
How to check if the function is available on compiler?
Is there a way to detect in compilation-time, if a function is built-in on compiler?
e.g, something like this:
#ifndef ITOA_FUNCTION
#define itoa myitoaimplementation
#endif
Thanks in advance.
3
votes
3answers
392 views
C++, using #if TRUE conditional directive
When using a statement like #if TRUE, what should I expect to happen? An explanation would be very appreciated! I understand how #if 1 works, but it gives a COMPLETELY different result in my code ...
0
votes
2answers
106 views
Omitting code: Any difference between Conditional Attribute and pre-processing directive?
I am wondering what the difference is between
#define MYSYMBOL
#if MYSYMBOL
public void foo () {
// ...
}
#endif
and
#define MYSYMBOL
[Conditional("MYSYMBOL")]
public void foo () {
// ...
2
votes
1answer
311 views
MonoTouch compiler directive for iPhone Simulator
Does anyone know the compiler directive I'd use in MonoTouch to see if I'm running in the iPhone simulator? Can't find any info anywhere.
Thanks!
3
votes
2answers
219 views
why is @class used in objective-c [duplicate]
Possible Duplicate:
@class May I know the proper use of this
I am wondering why @class is used. I have a general understanding that it allows you to access things in that class you call, ...
2
votes
2answers
88 views
Is there a compiler directive to replace part of a constant
I'm working with embedded C for a microcontroller right now and I find that sometimes there are several peripherals that differ only by a single letter (for example UARTA, UARTB, etc). The code for ...
0
votes
1answer
33 views
How to prevent an application from communicating with the outside world during debug/testing?
I have two separate applications (both part of the same system) that share a common database. One application is a "gateway" that is responsible for communicating with the outside world and the other ...
3
votes
1answer
399 views
Delphi compiler directive for shortstrings not working?
I'm trying to port a project from Delphi 4 to Delphi XE2. I have a requirement to use shortstring in the project. According to the Delphi Help, $H- should make the compiler use shortstrings for the ...
6
votes
2answers
256 views
What is the meaning of {$C PRELOAD} directive?
I found this directive declared in Controls.pas (and also in other units) and I'll be glad to know what does it mean.
{$C PRELOAD}
As far as I know $C means assertions control but what is the ...
2
votes
2answers
596 views
Pre-processing equivalent for views in RAZOR/MVC 3
I'm looking for the equivalent of an
#if DEBUG
//view elements to show just for debug builds
#if
for views in MVC3/Razor. What's the idiomatic method for implementing this type of a setup?
5
votes
2answers
837 views
Compiler Directives - Delphi Versions
I have a unit I wrote in Delphi 7 some time ago, and have just had the fun (pain) of converting to Delphi XE (Unicode).
The Unit works fine after some trouble, I am now trying to make this unit ...
4
votes
2answers
399 views
Commenting standards while writing iOS applications?
G'Day Programmers, I am from Java background however I have just started learning C++ and Objective C. I was worried when I so lots of different coding style in third party Objective C code. But I am ...
4
votes
2answers
215 views
Can one have conditional code at runtime based on the CPU architecture?
I'm using .Net 4.5 (preview... 4 is fine for the purposes of this question). I'm doing threading work.
Based on my studies, I know that x86 CPUs have a strong memory model, which means writes won't ...
1
vote
1answer
123 views
Operating System Directive in Delphi Prism
Since I am writing a program that will eventually run on Windows and Linux environment compiled from the same project files, I wanted to test and see how well the Operating System directives are. So, ...
2
votes
1answer
335 views
Requesting debug_info in an Erlang module using -compile
I want to force the Erlang compiler to generate debug info for specific modules whenever I compile them, without having to add the debug_info argument to the compilation command. I tried adding
...
1
vote
3answers
404 views
Compilter Directives - Suggestion - Run code in Debug mode only
I need to Log messages only when application is running in debug mode. I have found 2 ways:
First: Need to write 3 lines everywhere when logging is needed. But, Logger statement is disabled at ...
5
votes
2answers
236 views
Is it possible to ensure copy elision?
Copy elision is a neat optimization technique and in some cases relying on copy elision can actually be faster than passing around references "by hand".
So, let's assume you have identified a ...
-2
votes
2answers
249 views
is itoa alternative exist using compiler directive macros
I was wondering is there can be a way to stringize an integer variable using stringizing compiler directive.
I tried using:
#define stringize(a) #a
#define h(a) stringize(a)
#define g(a,b) a##b
...
1
vote
2answers
281 views
Using compiler directives to support multiple platforms
This is a general software design question.
Is it a good idea to use the #if compiler directive to support multiple platforms. For example, I have three files:
IScreen.cs
public interface IScreen {
...
1
vote
1answer
94 views
What is the best practice for porting #defines from .h file to a C# application?
I am converting an application from C++ to C#. The C++ application has a defines file .h with over 500 #define directives. I would like to represent this data in a Definition.cs file. What is the best ...
6
votes
4answers
266 views
Getting rid of precompiler directives in C#
I've been asked to maintain some not-as-legacy-as-I-would-like code, and it is riddled with compiler directives, making it pretty much unreadable and almost as maintainable. Case in point:
#if ...
0
votes
5answers
737 views
Boolean constants, compiler flags, and unreachable code! Oh my!
I've got some code that needs to work slightly differently in debug and release modes. Basically, it has a constant called PrettyPrint that is set to true in some modes and false in others, and I ...
3
votes
3answers
206 views
Avoid debug and callstack for a piece of code in c#
In Delphi the compiler directives {$d-} and {$l-} allow you to effectively avoid generation of debug and local variable information for a defined section of code.
In a practical matter that has the ...
0
votes
1answer
133 views
compiler directive defensive programming for adding ints to nsmuatablearray FMDB/EGODB
I would like to throw a warning message when users try to add an int to an nsmutablearray
basically any insert statement that includes values that are not nsstring / nsnumber cause run time crashes. ...
4
votes
4answers
2k views
Where do I define symbols tested with {$IFDEF}?
When I use Delphi directives in code, like:
{$IFDEF something}
.
.
.
{$ENDIF}
Where do I assign the word 'something' in the project? I tried in some places in project options but it didn't work. ...
0
votes
2answers
338 views
runtime directives in config
well,
let's say i've got the following if statement:
if (a)
{
// do something.
}
is it possible to run the statement only if a certain value in the app.config is true without ...
4
votes
1answer
713 views
Monotouch Compiler Directive if debug
In my MonoTouch app, how can I put in a # compiler directive to include code only if in debug mode?
11
votes
3answers
303 views
How can I temporarily disable the “return value might be undefined” warning?
I want to disable a specific warning (W1035) in my code, since I think that the compiler is wrong about this warning:
function TfrmNagScreen.Run: TOption;
begin
if ShowModal = mrOk then
Result ...
-2
votes
2answers
423 views
using VB.Net And/Or operators for logical short-circuiting: Any compiler-directive/workaround?
I found using AndAlso/OrElse, all the time, VERY annoying. It reduces code readability, especially when conditioning get complicated.
Any suggestions?
2
votes
4answers
382 views
Delphi Compiler Directive to Evaluate Arguments in Reverse
I was really impressed with this delphi two liner using the IFThen function from Math.pas. However, it evaluates the DB.ReturnFieldI first, which is unfortunate because I need to call DB.first to get ...
5
votes
6answers
1k views
#Define Compiler Directive in C#
In C, I could declare a compiler directive as follows:
#define MY_NUMBER 10
However, in C#, I only appear to be able to do this:
#define MY_NUMBER
Which is obviously useless in this case.
Is ...
5
votes
4answers
2k views
C# Compiler Directives
I’m looking at some C# code, and have come across the following statement:
#if DEBUG
// Do something here
#else
// Do something else
#endif
I assumed that DEBUG would be a defined somewhere ...
1
vote
4answers
2k views
Implicit casting Integer calculation to float in C++
Is there any compiler that has a directive or a parameter to cast integer calculation to float implicitly. For example:
float f = (1/3)*5;
cout << f;
the "f" is "0", because calculation's ...
3
votes
5answers
887 views
Removing Delphi IFDEf compiler directives automatically
I am currently working with 'inherited' code that has (scattered randomly throughout) a whole bunch of conditional compiler directives based on the version of Delphi, going back to Delphi 2 . From now ...
6
votes
1answer
2k views
How to set project wide #define in C#
I have several classes in a project which need to only be in certain builds of the application which are currently not ready for release or debug.
To prevent these classes from being used, I want to ...
2
votes
3answers
288 views
@property and @synthesize: why both?
I have been climbing the learning curve of X-code for about two months now. I understand the purpose of the @property/@synthesize directives, but it seems that it is a bit redundant to always ...
3
votes
1answer
263 views
What all APIs are affected by {$IOCHECKS OFF}?
We have some ancient Delphi code (might have even originated as Turbo Pascal code) that uses {$I-}, aka {$IOCHECKS
OFF}, which makes the code use IOResult instead of exceptions for disk I/O errors.
...
12
votes
2answers
2k views
Conditional compile when running in Simulator as opposed to on a device
Is there a compiler directive I can use to compile a different line of code when targetting the simulator as opposed to my device. Something like:
# IF SIMULATOR
[self.imagePicker ...
4
votes
1answer
1k views
#warning directive in VB.net
I know the #warning directive does not exist in vb.net... is there anything like it?
I want to be able to throw messages (warnings) at compiler time.




