TR1 - C++ Technical Report 1, proposed extensions to the C++ standard library

learn more… | top users | synonyms

2
votes
2answers
342 views

Why doesn't this regex work for c++ TR1?

I admit it's been a while since I've worked with C++, but from what I can tell, my code should work. I'm trying to replace/remove all block comments from a file containing code. I put the whole file ...
0
votes
1answer
164 views

It is safe to use constructors in function parameters in C++?

This C++ code fails in Visual Studio 2010: const sregex_iterator end; for (sregex_iterator match(origString.begin(), origString.end(), regex(regExPattern)); match != end; ++match) { ...
1
vote
2answers
449 views

How to get headers for unordered_set in gcc v4.1.2?

I'd like to use unordered_set without installing Boost. I tried to add --std=gnu++0x but it is not a recognized option. Does v4.1.2 include unordered_set? If so, how do I get the header file for it? ...
3
votes
1answer
310 views

using std::tr1:shared_ptr as an internal mechanism for reference counting

Is it safe and correct to use an std::tr1::shared_ptr as in the sample code below, for the purpose of reference counting? (this is just a particular sample, the class can contain anything else (void*) ...
0
votes
1answer
106 views

Is tr1 array supposed to be 16 byte aligned?

In "gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)" in tr1 array, I see this: value_type _M_instance[_Nm ? _Nm : 1] __attribute__((__aligned__)); whereas in "gcc ...
1
vote
3answers
502 views

Finding if a string is 'numeric only' using tr1 regex

tIs it possible for me to detect if a string is 'all numeric' or not using tr1 regex? If yes, please help me with a snipped as well since I am new to regex. Why I am looking towards tr1 regex for ...
1
vote
3answers
153 views

Is it safe to use such smart pointer casting?

Is it safe to use such smart pointer casting? APtr a(new A()); BPtr & b = (Bptr&)a; // this is it there, class A { public: virtual ~A(){} virtual void methodA() = 0; } typedef ...
2
votes
1answer
215 views

Returning an anonymous tr1 array initialized with boost.assign

Ok, this works on my compiler (vs2008) but I'm trying to figure out if I'm doing something non-standard. Here's a trivial example what I'm doing: std::tr1::array<int, 3> OneTwoThree() { ...
3
votes
1answer
381 views

stl TR1 features documentation for gcc

The gcc support for the language features of C++11 is well documented at http://gcc.gnu.org/projects/cxx0x.html. However TR1 specifies several data-structures and algorithms that must (should?) be ...
0
votes
2answers
623 views

c++ tr1 enable_shared_from_this what's the advantage?

I am currently reading through C++ TR1 extensions and started focussing on std::tr1::shared_ptr. So, I read so far that I can declare and initialize shared_ptr<> with this code: class foo {}; ...
2
votes
1answer
277 views

Use copy constructor for “abstract” super class

I have a "abstract" super class called RealAlgebraicNumber and two inherited classes called IntervalRepresentation and NumericRepresentation. Both IntervalRepresentation and NumericRepresentation have ...
2
votes
2answers
433 views

C++: Assigning a function to a tr1::function object

One of our classes provides tr1::function callback object. When I try assigning a member function to it, though, I get a compiler error. The examples below are untested and just to illustrate: ...
1
vote
1answer
85 views

Conjoin vectors of shared_ptr

i use smart pointers in the following way: typedef std::tr1::shared_ptr<RealAlgebraicNumber> RealAlgebraicNumberPtr; I'm using the smart pointer things because RealAlgebraicNumber is an ...
0
votes
3answers
312 views

TR1 function multicast

How would you implement multicast for TR1 functors? I have my callback slots implemented like void setCallback(std::tr1::function<void (std::string)> cb) { this->callback = cb; } but ...
1
vote
1answer
341 views

Initializing boost::random::discrete_distribution in VC2010

I am trying to implement one of the first examples from boost::random documentation in Visual Studio 2010 SP1, using the native library (TR1). Before when using the library, I found out that I can ...
1
vote
5answers
686 views

shared_ptr<void> t(new char[num]) means memory leak?

shared_ptr<void> t(new char[num]) means memory leak? If so, what is the correct practice in this case. should I use shared_array<> instead? I'm editing the bytes pointed by 't' manually ...
2
votes
2answers
2k views

Why some include files only reside in tr1?

When I try to include things like <unordered_map> it fails and says the file doesn't exist, while when I try to include <tr1/unordered_map> it works. however, the include files that are ...
3
votes
2answers
223 views

Where can I find reliable information on C++11, std new features and Tr1?

I am trying to make the most of the new standart. However, I am having dificult in find solid information about C++11 like good explanations on the new keywords and syntax. Another problem has been ...
3
votes
1answer
255 views

Is there a match_partial in C++11 Regular Expressions?

I read through n1429 with the section The algorithms regex_match and regex_search both support a feature not commonly seen in regular expression libraries: a partial match. When the flag ...
5
votes
2answers
3k views

Using generic std::function objects with member functions in one class

For one class I want to store some function pointers to member functions of the same class in one map storing std::function objects. But I fail right at the beginning with this code: class Foo { ...
4
votes
3answers
888 views

How to handle evolving c++ std:: namespace? e.g.: std::tr1::shared_ptr vs. std::shared_ptr vs. boost::shared_ptr vs. boost::tr1::shared_ptr

For the code I am currently working on, we sometimes need to compile on some older systems with older compilers (e.g.- we run sims on an older IBM BlueGene/L, who's support contract dictates some ...
0
votes
1answer
763 views

Problems using tr1::regex with unicode strings

std::wstring str(L"something"); std::tr1::wregex rx(L"something"); std::tr1::wcmatch res; std::tr1::regex_search(str, res, rx); This fails to compile with the error: error ...
2
votes
1answer
315 views

How to convert string to regex literal

What's the best way to escape an arbitrary std::wstring for use inside a regular expression? For example, convert you owe me $ to you owe me \$? My scenario: I want to use a std::tr1::wregex to ...
1
vote
1answer
300 views

Workaround to allow tr1::function to swallow return values

As a follow-up to Can tr1::function swallow return values?, how can one work around the limitation that tr1::function cannot swallow return values? This should work in the specific case of swallowing ...
2
votes
1answer
1k views

Problem replacing boost::bind with std::tr1::bind

I have the following code which compiles and runs fine under Visual Studio 2008 SP1. #include <functional> #include <iostream> #include <boost/bind.hpp> #include ...
7
votes
1answer
401 views

Can tr1::function swallow return values?

The boost::function FAQ item 3 specifically addresses the scenario I am interested in: Why are there workarounds for void returns? C++ allows them! Void returns are permitted by the C++ ...
4
votes
1answer
3k views

enable_if method specialization

template<typename T> struct A { A<T> operator%( const T& x); }; template<typename T> A<T> A<T>::operator%( const T& x ) { ... } How can I use enable_if to ...
3
votes
2answers
281 views

Is there a better way to perform URL pattern matching in C++ than iteration?

I have a pattern matching routine that looks up values from a std::map based on the URL used to request the command. The URL mapping table is filled with values like: // Assume this->commands_ is ...
2
votes
5answers
394 views

How do I most effectively prevent my normally-distributed random variable from being zero?

I'm writing a Monte Carlo algorithm, in which at one point I need to divide by a random variable. More precisely: the random variable is used as a step width for a difference quotient, so I actually ...
0
votes
1answer
202 views

Obtain Regular Expressions from file

I would like to be able to obtain a list of regular expressions from a file. I have tried reading the regexes into a char * or a std::string which works without a problem. However, converting ...
2
votes
1answer
575 views

Custom Allocator in tr1's unordered_map

I have a few problems regarding a custom allocator for an unordered_map. I have a large dataset and I need to hash on a string as key. So I came to know that providing a custom memory allocator would ...
2
votes
2answers
516 views

Remove duplicates from two large text files using unordered_map

I am new to a lot of these C++ libraries, so please forgive me if my questions comes across as naive. I have two large text files, about 160 MB each (about 700000 lines each). I need to remove from ...
3
votes
2answers
839 views

How can I force MinGW to use tr1 namespace?

I'm using MinGW 4.5.2 and I'd like to use unordered_map from the tr1 namespace, not the one from std namespace that is enabled by passing -std=c++0x. I'm sure this can be done since there are two ...
2
votes
1answer
837 views

Visual Studio 2010 C++ tr1 regex equivalent of perl '/g' global modifier

In perl, I can do this:- $text = '1747239'; @matches = ($text =~ m/(\d)/g); # @matches now contains ('1', '7', '4', '7', '2', '3', '9') Using c++ regex matching, what's the best way to replicate ...
0
votes
1answer
832 views

TR1 regex_replace with wstring in VS2010?

#include <iostream> #include <string> #include <regex> #include <ios> #include <locale> using namespace std; int main () { const wstring wstr(L"<(.|\\n)*?>"); ...
3
votes
2answers
586 views

Any hit for dereferencing std::tr1:shared_ptr vs. dereferencing a naked pointer?

I realize that there is a (Sometimes significant) performance hit for creating, assigning, copying, and destroying a std::tr1::shared_ptr or boost::shared_ptr (due to the reference counting ...
6
votes
4answers
3k views

Using TR1 libraries in GCC and MSVC

I would like to use the TR1 libraries that ship with modern versions of GCC and MSVC, but there are subtle differences: in GCC, I have to say #include <tr1/memory> ...
3
votes
1answer
744 views

Comparing std::function<>

Is it possible to somehow compare two std::tr1::function<> objects? What if I have a collection of function<void(int,float)> objects and want to add and remove event handlers? Adding is ...
21
votes
2answers
4k views

How does weak_ptr work?

I understand how to use weak_ptr and shared_ptr. I understand how shared_ptr works, by counting the number of references in its object. How does weak_ptr work? I tried reading through the boost source ...
0
votes
3answers
337 views

null shared_ptr can access to member functions

I can access member functions of a null shared_ptr object : #include <memory> #include <iostream> class A { public: int getNum() {return 1234;} }; int main() { ...
3
votes
2answers
5k views

Defining a hash function in TR1 unordered_map inside a struct

According to this, it is possible to define an equality function in a TR1 unordered_map like this: #include <tr1/unordered_map> using namespace std; using namespace std::tr1; struct foo{ ...
0
votes
2answers
460 views

C++ library comparison: Boost and Tr1

Which is more robust? Coz I read Linus Torvalds 's article about how bad is boost. Is that tr1 is better than boost?
1
vote
3answers
2k views

Why Visual Studio cannot find 'tr1/unordered_map?

I want to use google-ctemplate in a project. But if I include the basic file, I get the following error (with Visual Studio C++ 2005): Error 1 fatal error C1083: Cannot open include file: ...
8
votes
3answers
248 views

Using C++ classes like function that may be defined in several different locations

Between C++0x, C++03 TR1 and boost some things like function and bind can be defined in 3 different places depending on the compiler, eg for VC pre VC9 feature pack you have the boost versions, then ...
3
votes
1answer
302 views

Checking the size of a tr1 array at compile time

I just found out that boost::array::static_size isn't part of tr1::array, or at least it's not in my implementation (GCC 4.2.1) and I can't find it in any tr1 documentation. Is there another way to ...
3
votes
2answers
1k views

C++ Regex to match words without punctuation

I searched, couldn't find anything. In the interest of not wasting any more of my time on the chance that the answer is obvious to someone else, I'm asking here. Only site that has been useful so far ...
1
vote
2answers
190 views

for_each bind vector of vector resize

This is my first question. I gave up and will use a hand rolled functor for this, but I am curious as to how it is supposed to be done. The contrived example below is intended to resize all of the ...
7
votes
2answers
557 views

R-value inserts don't work for unordered_map

I'm using the latest available GCC build from repository. I decided to use it because some additional C++0x features. However now I stuck with something what supposes to work - I want to add new ...
2
votes
4answers
592 views

Smart pointer: runtime crash in VS 9 running WinXP-Sp3

I am getting run time crash in the following piece of code and not able to debug also. Please review and let me know what's going on. // CppConsole.cpp : Defines the entry point for the console ...
0
votes
2answers
233 views

Regular expressions matching

I have one function for checking, whether entered line is "OK". #include <tr1/regex> bool lineIsValid(string line) { const tr1::regex pattern("[^-]{1,30} - [^-]{1,30}"); return ...