|
-
August 1st, 1999, 06:01 PM
#1
Compiler Option?
In a real world environment where code changes hands between different developers and departments are programmers forced to write with the same compiler? I would think that could be the only way to exchange code.
Has this been a problem for some of you in your first job?
-
August 5th, 1999, 04:32 AM
#2
Re: Compiler Option?
If you really want to exchange code between different systems use ANSI/POSIX C/C++.
Every compiler should have a switch to force ANSI spell checking.
If you use system dependent functions, wrap them like:
// os_win32.cpp
#include <windows.h>
void os_sleep_sec( int sec) { Sleep( sec*1000); }
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|