¡@

Home 

c++ Programming Glossary: codebase

What does void mean in C, C++, and C#?

http://stackoverflow.com/questions/1043034/what-does-void-mean-in-c-c-and-c

has no C experience and is suddenly looking at a C based codebase. c# c c language design terminology share improve this question..

What are inline namespaces for?

http://stackoverflow.com/questions/11016220/what-are-inline-namespaces-for

one or the other vector implementation is chosen. If your codebase was written in pre C 98 times and you find that the C 98 version.. have to do is to find the references to std vector in your codebase and replace them by std pre_cxx_1997 vector . Come the next..

#pragma once vs include guards?

http://stackoverflow.com/questions/1143936/pragma-once-vs-include-guards

once vs include guards I'm working on a codebase that is known to only run on windows and be compiled under Visual..

Tools to find included headers which are unused? [closed]

http://stackoverflow.com/questions/1301850/tools-to-find-included-headers-which-are-unused

tools that can do this preferably on linux We have a large codebase that through the last 15 years has seen plenty of functionality..

Why are Cdecl calls often mismatched in the “standard” P/Invoke Convention?

http://stackoverflow.com/questions/15660722/why-are-cdecl-calls-often-mismatched-in-the-standard-p-invoke-convention

P Invoke Convention I am working on a rather large codebase in which C functionality is P Invoked from C#. There are many.. is P Invoked from C#. There are many calls in our codebase such as... C extern C int __stdcall InvokedFunction int With..

Access protected member of a class in a derived class

http://stackoverflow.com/questions/1624564/access-protected-member-of-a-class-in-a-derived-class

member of a class in a derived class i have an old codebase here where they used protected member variables. Whether or..

Help a C++ newbie understand his mistakes: header files and cpp files

http://stackoverflow.com/questions/1686204/help-a-c-newbie-understand-his-mistakes-header-files-and-cpp-files

If only there was some way to compile distinct parts of my codebase individually and somehow link them together afterwards An excellent.. different file It's impossible to completely separate your codebase unless you want to run a bunch of tiny tiny .exe files instead...

Dead code detection in legacy C/C++ project

http://stackoverflow.com/questions/229069/dead-code-detection-in-legacy-c-c-project

and a lot depends on how good your tests exercise the codebase. But at least this will give an idea about possible dead code..

Crossplatform iPhone / Android code sharing

http://stackoverflow.com/questions/2380258/crossplatform-iphone-android-code-sharing

It should be totally possible. So C C engine almost same codebase for Android and iPhone Thin bindings layer Portable code. share..

Windows Phone 7 and native C++/CLI

http://stackoverflow.com/questions/2455372/windows-phone-7-and-native-c-cli

7 platform which to the dismay of those who have a big C codebase like me doesn't support native development anymore. Although.. it. So I was thinking how viable would be to make this codebase available to Phone 7 by adapting it to compile under C CLI...

Is there a way to use pre-compiled headers in VC++ without requiring stdafx.h?

http://stackoverflow.com/questions/290034/is-there-a-way-to-use-pre-compiled-headers-in-vc-without-requiring-stdafx-h

anything in any header file is likely to cause the whole codebase to recompile every time. This can make simple refactoring take..

How to complete a git clone for a big project on an unstable connection?

http://stackoverflow.com/questions/3954852/how-to-complete-a-git-clone-for-a-big-project-on-an-unstable-connection

connection I am trying to git clone the LibreOffice codebase but at the moment I have an internet connection by mobile phone..

is f(void) deprecated in modern C and C++

http://stackoverflow.com/questions/416345/is-fvoid-deprecated-in-modern-c-and-c

there any reason not to replace void with throughout the codebase in order to improve consistency or is there a subtle difference..

How do you introduce unit testing into a large, legacy (C/C++) codebase?

http://stackoverflow.com/questions/748503/how-do-you-introduce-unit-testing-into-a-large-legacy-c-c-codebase

do you introduce unit testing into a large legacy C C codebase We have a large multi platform application written in C. with..

Of Memory Management, Heap Corruption, and C++

http://stackoverflow.com/questions/7525/of-memory-management-heap-corruption-and-c

management stuff and find out where I've screwed up. The codebase is still small about 1000 lines so this is easily do able. Still..

What is a C++ delegate?

http://stackoverflow.com/questions/9568150/what-is-a-c-delegate

is not C at its purest or cleanest but I notice that the codebase where I work has them in abundance. I'm hoping to understand..