Opened 19 years ago

Closed 18 years ago

#212 closed Support Requests (Invalid)

namespace problems

Reported by: nobody Owned by: nobody
Milestone: Component: None
Version: None Severity:
Keywords: Cc:

Description

when , I include the file regex.hpp, then i can't use the 
standard c library unless I go std::strcat ect...

My question is , how does boost make this happen, 
since i change all my calls to the stanard C library to 
include std::, and I don't need boost any more. 

 Simply included boost is not a wise solution, I wonder is 
there a way to do this on my own without boost or 
regex.hpp to be exact.

my email address is vbmew@hotmail.com

-thank you

Change History (1)

comment:1 by Vladimir Prus, 18 years ago

Status: assignedclosed
Logged In: YES 
user_id=321498

I'm afraid, this question has nothing to do with boost, in a general 
namespace question. I suggest asking in some C++ newsgroup (e.g. 
comp.lang.c++).  
 
Hint: 
    #include <stdlib.h> 
allows you to call C functions without std::, while 
   #include <cstdlib> 
does not. 
 
 
Note: See TracTickets for help on using tickets.