Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
227 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 ...
9
votes
3answers
1k 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 ...
6
votes
2answers
97 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 ...
6
votes
4answers
198 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 ...
5
votes
2answers
202 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 ...
5
votes
2answers
142 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 ...
5
votes
6answers
405 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
3k views

Delphi #IF(DEBUG) equivalent?

Is there a Delphi equivalent of the C# #if(DEBUG) compiler directive?
4
votes
2answers
126 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 ...
4
votes
1answer
777 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 ...
3
votes
4answers
439 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. ...
3
votes
4answers
365 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 ...
3
votes
5answers
687 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 ...
3
votes
1answer
210 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. ...
3
votes
1answer
883 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.
2
votes
1answer
54 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 ...
2
votes
1answer
85 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 ...
2
votes
3answers
112 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 ...
2
votes
4answers
294 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 ...
2
votes
3answers
189 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 ...
1
vote
2answers
66 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?
1
vote
1answer
57 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, ...
1
vote
3answers
102 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 ...
1
vote
2answers
141 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
75 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 ...
1
vote
1answer
221 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?
1
vote
4answers
1k 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 ...
0
votes
5answers
261 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 ...
0
votes
1answer
90 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. ...
0
votes
2answers
167 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 ...
-2
votes
2answers
144 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 ...
-2
votes
2answers
190 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?