Search:

Type: Posts; User: Jace

Search: Search took 0.00 seconds.

  1. Hmm no, I tried that, as well as other temporary...

    Hmm no, I tried that, as well as other temporary files (.suo, .user), closing & reloading my project, but it still doesn't find certain labels (which are certainly there).

    Is IntelliSense supposed...
  2. Visual Studio 8 IDE: intellisense (?) says 'symbol undefined'?

    When I right-click on some function or class name in my source code, and choose 'Go To Definition', lately I'm getting "Symbol 'FooBar' not defined' more and more often.

    Is there some way I can...
  3. Aight, that's probably the cleanest way. Thing is...

    Aight, that's probably the cleanest way. Thing is I already have lots of "Foo" calls and derived implementations, but still I can prolly get that fixed with some S&R.
    Thanks!
  4. Yeah but a is now a B*, not a C*

    Yeah but a is now a B*, not a C*
  5. Thanks for your suggestions. Of course I'm...

    Thanks for your suggestions.

    Of course I'm only re-declaring the function in a derived class if I actually need to override its implementation there.

    The problem is I have over hundred classes...
  6. Thanks, but unfortunately it doesn't work here....

    Thanks, but unfortunately it doesn't work here. What kind of compiler are you using? Visual Studio 8 here.
  7. rvirtual and inline function with different prototypes (to enforce default parameter)

    Suppose I have this base + derived class:
    class B
    {
    public:
    virtual void Foo( int x, int mode );
    };

    class C : public B
    {
    public:
  8. Replies
    11
    Views
    4,591

    Here's a special case to clip between 0 and 1,...

    Here's a special case to clip between 0 and 1, using IEEE magic:
    inline void Clip01( const float *src, float *dst ) // *dst = *src clipped between 0 and 1
    {
    static const int ieeeOne = 0x3f800000;...
Results 1 to 8 of 8