CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: 2kaud

Search: Search took 0.06 seconds.

  1. Replies
    3
    Views
    1,358

    Re: __restrict (keyword)

    Yeah - restrict is not a part of c++ yet (its from c) so its implementation is compiler specific - hence the beginning __. It might even do nothing!
  2. Replies
    3
    Views
    1,358

    Re: __restrict (keyword)

    __restrict is basically a promise to the compiler that for the scope of the pointer, the target of the pointer will only be accessed through that pointer (and pointers copied from it).

    See...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured