¡@

Home 

c++ Programming Glossary: maintenance

How to retrieve all keys (or values) from a std::map?

http://stackoverflow.com/questions/110157/how-to-retrieve-all-keys-or-values-from-a-stdmap

functionality away from the call site. Which can make maintenance a little more difficult. I'm not sure if your goal is to get..

How do I remove code duplication between similar const and non-const member functions?

http://stackoverflow.com/questions/123758/how-do-i-remove-code-duplication-between-similar-const-and-non-const-member-func

inside the braces. This is duplicate code and can cause maintenance problems for long functions with complex logic . Is there a..

Are do-while-false loops common?

http://stackoverflow.com/questions/1412081/are-do-while-false-loops-common

the second style requires more examination thus makes maintenance harder in the long run for no real benefit. Edit in the second..

How to create minidump for my process when it crashes?

http://stackoverflow.com/questions/1547211/how-to-create-minidump-for-my-process-when-it-crashes

accessed or missing NULL checks etc. BTW if your maintenance policy somehow allows it port your application from VC6 to something..

Does “&s[0]” point to contiguous characters in a std::string?

http://stackoverflow.com/questions/1986966/does-s0-point-to-contiguous-characters-in-a-stdstring

to contiguous characters in a std string I'm doing some maintenance work and ran across something like the following std string..

When are header-only libraries acceptable?

http://stackoverflow.com/questions/2174657/when-are-header-only-libraries-acceptable

binary compability over performance because of the ease of maintenance. The general consensus is that the performance gain if any would..

Dynamically register constructor methods in an AbstractFactory at compile time using C++ templates

http://stackoverflow.com/questions/2850213/dynamically-register-constructor-methods-in-an-abstractfactory-at-compile-time-u

from MessageTmpl. This works great and simplifies code maintenance but I still have some questions about this technique Is this.. C . A script would have the added advantage of easing maintenance of MESSAGE_IDs. In response to your comments Singletons are..

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

from the source file... This means that when doing maintenance you would use the configuration that doesn't use precompiled..

Portable C++ build system

http://stackoverflow.com/questions/3349956/portable-c-build-system

C build system I'm looking for a good and easy in maintenance portable build system for C projects. Main platforms should..

What to do about a 11000 lines C++ source file?

http://stackoverflow.com/questions/3615789/what-to-do-about-a-11000-lines-c-source-file

The file is used and actively changed in several 10 maintenance versions of our product and so it is really hard to refactor.. for a start into 3 files then merging back changes from maintenance versions will become a nightmare. And also if you split up a.. and merging of files c version control source code maintenance anti patterns share improve this question Find some code..

C/C++ switch case with string [duplicate]

http://stackoverflow.com/questions/4480788/c-c-switch-case-with-string

a if else if chain. Using a hash value is going to be a maintenance nightmare. switch is intended to be a low level statement which..

Uploading big files over HTTP

http://stackoverflow.com/questions/492307/uploading-big-files-over-http

to another protocol that supports resume natively for maintenance reasons potential problems with firewalls etc. php c http upload..

Throwing C++ exceptions across DLL boundaries

http://stackoverflow.com/questions/5107948/throwing-c-exceptions-across-dll-boundaries

in which case they share a heap as well. But this can be a maintenance burden especially when libraries from multiple vendors are involved..

Building boost::options from a string/boost::any map

http://stackoverflow.com/questions/6122094/building-boostoptions-from-a-string-boostany-map

just test every type you want to support but this is a maintenance nightmare. Better would be to expand upon the idea boost any..

Handcode GUI or use gui-designer tool

http://stackoverflow.com/questions/623692/handcode-gui-or-use-gui-designer-tool

creation and layout code. I have often had to take over maintenance of GUI code which is really hard to reuse because its behavior..

Automatically separate class definitions from declarations?

http://stackoverflow.com/questions/652779/automatically-separate-class-definitions-from-declarations

fwd foo.h and foo.cpp files myself. And of course it's a maintenance problem When a new library version is released I have to adapt..

Should I use return/continue statement instead of if-else?

http://stackoverflow.com/questions/963982/should-i-use-return-continue-statement-instead-of-if-else

of return continue a good idea Are there any possible maintenance or readability problems c# c c share improve this question..