News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

cctest unix project

Started by BlueHazzard, February 17, 2014, 02:16:41 PM

Previous topic - Next topic

BlueHazzard

the cctest project for unix has to be updated.

@@ -45,7 +45,6 @@
45 45 <Add library="codeblocks" />
46 46 <Add directory="../../devel" />
47 47 </Linker>
48 - <Unit filename="cctest/cctest.cpp" />
49 48 <Unit filename="cctest/cctest.h" />
50 49 <Unit filename="cctest/cctest_app.cpp" />
51 50 <Unit filename="cctest/cctest_frame.cpp" />


greetings

MortenMacFly

Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: [url="https://www.codeblocks.org/docs/main_codeblocks_en.html"]https://www.codeblocks.org/docs/main_codeblocks_en.html[/url]
C::B FAQ: [url="https://wiki.codeblocks.org/index.php?title=FAQ"]https://wiki.codeblocks.org/index.php?title=FAQ[/url]

ollydbg

Quote from: BlueHazzard on February 17, 2014, 02:16:41 PM
the cctest project for unix has to be updated.

@@ -45,7 +45,6 @@
45 45 <Add library="codeblocks" />
46 46 <Add directory="../../devel" />
47 47 </Linker>
48 - <Unit filename="cctest/cctest.cpp" />
49 48 <Unit filename="cctest/cctest.h" />
50 49 <Unit filename="cctest/cctest_app.cpp" />
51 50 <Unit filename="cctest/cctest_frame.cpp" />


greetings
I don't have a Linux system to test those change.
So, a unified format patch is welcome.

Mainly similar to this change: diff file

Thanks.

If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

ollydbg

If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.