TR1 - C++ Technical Report 1, proposed extensions to the C++ standard library
4
votes
1answer
115 views
Is it legal to place using tr1::shared_ptr in namespace std in header?
Is it legal and good programming style to use std::tr1::shared_ptr as std::shared_ptr placing using directive in corresponding header? Like this:
namespace std
{
using tr1::shared_ptr;
}
I know ...
0
votes
2answers
25 views
Compilation Error when using tr1::function
The purpose is to execute CVS890Executor::do_full_frame when calling the m_callback_fn within CDevVS890.
Following is the incriminated code:
"CDevVS890.h"
typedef std::tr1::function<void (void* ...
1
vote
1answer
70 views
VS2012 mixing C and Cpp, library clash
I am trying to combine some C and C++ code in a project, and before I had no issues with this, but I'm now trying out VS2012 for the first time and I get a lot of errors from a TR1 header that I ...
2
votes
1answer
37 views
std::tr1::array compile error
C++ requires a type specifier for all declarations
...char, 16>>, MAXPreBorder> _preCloselist)
my code is:
std::tr1::unordered_set<std::tr1::array<unsigned char, 16> >
...
0
votes
1answer
54 views
Escape regex special characters for tr1::regex
I need to embed user-input in my regular expression, so it needs to be escaped for any regex special characters, and I don't know in advance what the string will be.
It would be something like
...
0
votes
1answer
55 views
Using tr1::regex_search to match a big list of strings
I need to match any of a list of strings, and I'm wondering if I can just use a regular expression that is something like "item1|item2|item3|..." instead of just doing a separate strstr() for each ...
0
votes
1answer
52 views
Get index of match from tr1::regex_search
How can I get the index of the match when using std::tr1::regex_search?
// sequence of string sub-matches
std::tr1::smatch result;
if (!std::tr1::regex_search(text, result, pattern))
return ...
0
votes
1answer
72 views
How do I use tr1 function and bind for functions with changing parameters?
I'm currently going from C# to C++ and rewriting some game engine code and I think I'm at a wall with tr1; Essentially what I want to do is have an input layer take input from the touchscreen and then ...
10
votes
1answer
390 views
Generating number from binomial distribution using C++ TR1
I am trying to use the following code (taken from the internet) to generate numbers from binomial distribution. It compiles but one execution it hangs. (I am using g++ on mac.)
Could someone suggest ...
1
vote
2answers
105 views
find multiple values in unordered_set using find
I want to use specified equal_to function int unordered_set
The sample code likes this:
struct myEqual
{ //string with one different character is considered equal
bool operator()(const ...
1
vote
1answer
115 views
C++ TR1 Regular Expressions Not Available
I'm trying to utilize the 'TR1' regular expression extensions for some C++ string parsing.
I've read that the <regex> header and namespace std::tr1 are required for this
I can compile with the ...
2
votes
1answer
104 views
C++ how to handle tr1 and non-tr1 namespaces in portable code?
Is there a canonical way to deal with the namespace issues that arise when trying to maintain portable code between a TR1 and non-TR1 toolchain?
I have a VC++2010 project that #include ...
3
votes
1answer
93 views
How come cmath does not use templates and/or overloads
Many of the new functions brought in C++11 by TR1 have ugly C-like signatures. For instance, quoting Boost's TR1's documentation ...
2
votes
1answer
75 views
Nesting a tr1::bind<> object from tr1::bind() in a new call to tr1::bind()
I'm a little confused why this call to bind doesn't work. I've narrowed the problem down to trying to nest a bind object in a new call to bind.
#include <iostream>
#include <algorithm>
...
0
votes
2answers
132 views
'No Match' Errors with a member callback function using std::tr1::function
I am trying to create a callback function using str::tr1::function pointing to a public member function.
std::tr1::function < int (const string& , const MessageInfo* , const void* , const int ...
0
votes
0answers
71 views
Tokenize with colon using std::tr1::regex
I'm working on a quasi-SCPI command parser and I want to split a string based on colons, ignoring quoted strings. I want to get an empty string if there is no text between colons.
If I use this ...
0
votes
1answer
199 views
GCC 4.1.1 doesn't compile some code with tr1::unordered_map
I have following code to test one concept from a bigger program, and I try to compile with GCC 4.1.1 on Linux. I cannot use newer version of compiler due to corporate environment restrictions and so I ...
-1
votes
1answer
71 views
How to bind 'this' to a class function in C++ TR1?
I wanted to create a function for a class method from a specific instance. As in the example, I'd like to create a function for this->x.
class A {
public:
void x(int p) { }
void y() {
...
3
votes
1answer
70 views
std::tr1::function and the template value it accepts
I was reviewing some code and came upon a line similar to:
std::tr1::function<bool (int, int)>(//etc...
The syntax for the template type, bool (int, int) was unfamiliar to me. Based on ...
0
votes
2answers
71 views
Implementing std::equal with tr1::shared_ptr types
Could not easily find a solution online...
I have something similar to the following.
class Color {
public:
Color(std::string n) : name(n) {}
typedef std::tr1::shared_ptr<Color> Ptr;
...
0
votes
2answers
56 views
How can I avoid having a hash function impl in my header if I want to use a tr1 unordered map for a custom type?
I need to hash a combination of four different things, comprising 20 bytes, as such I defined this:
struct holder
{
char a;
uint16_t b;
uint64_t c;
char d[9];
} __attribute((__packed__));
...
0
votes
3answers
154 views
C++, TR1, Regex and Boost
I'm interested in a basic Regex library. I believe I can use C++ TR1. During the research, similar answers claim C++ TR1 is provided by Boost (some hand waiving).
Perhaps I am missing something, but ...
1
vote
1answer
91 views
tr1::hash for uint64_t
I'm trying to hash a 64 bit integer,
uint64_t temp = ...;
return tr1::hash<uint64_t>(temp);
However I get the error,
error: no matching function for call to ‘std::tr1::hash<long long ...
1
vote
1answer
67 views
Boost or TR1 equivalent of gsl_matrix and the like
I cannot use gsl_matrix because my app is closed source and, according to this question, if I used GPL code directly, I'd have to make my app open source. And that's a no-no from the higher ups.
...
1
vote
3answers
101 views
How can I acquire the basic function type from an std::function?
I have a lot of classes with a typedef of std::function<void(PARAMS)> where PARAMS is specific to each class. I need to specialize based on the number of parameters and the first parameter's ...
0
votes
1answer
135 views
Are there important differences to know about between boost::function and std::tr1::function
I use boost a lot in my code but have so far refrained from using std::tr1. Now I need a more sophisticated function pointer, like those two can provide. Unfortunately C+11 is not an option yet. I ...
1
vote
1answer
278 views
unordered_multimap::equal_range slow
I would expect unordered_multimap::equal_range to be in average constant complexity, however the following does not scale linearly with n as expected:
#include <iostream>
#include ...
1
vote
2answers
928 views
tr1::function and tr1::bind
I put the following into Ideone.com (and codepad.org):
#include <iostream>
#include <string>
#include <tr1/functional>
struct A {
A(const std::string& n) : name_(n) {}
...
1
vote
1answer
208 views
Combining function, bind, c++ and managed code
I have a c++ function which is expecting a function object (AuthenticateNotifyFunc) to be passed to it thus:
class lc_Authenticate
{
public:
typedef enum {
kAbort,
kContinue
} ...
14
votes
4answers
383 views
Importing std::tr1 into std - is it legal? Does it improve portability?
I have C++03 code that looks like this:
#include <boost/tr1/unordered_map.hpp>
...
std::tr1::unordered_map<std::string, int> mystuff;
...
I started to wonder that i would suffer later ...
5
votes
3answers
444 views
Does std::function's copy-constructor require the template type's argument types to be complete types?
Given:
#include <functional>
class world_building_gun;
class tile_bounding_box;
typedef std::function<void (world_building_gun, tile_bounding_box)> worldgen_function_t;
void foo() {
...
1
vote
1answer
311 views
Generating random numbers using C++ TR1
I am trying to generate random numbers from a normal distribution. When the code:
normal(eng)
appears in main(), the program works fine. However, if it is called from another function, the next ...
1
vote
2answers
868 views
c++ std::tr1::hash::operator() undefined?
I'm converting a C++ program over from Windows building with Visual C++ 2008 to build on Linux with gcc 4.6.1. There's a module that uses <unordered_map>. In VC++, it seems to be perfectly ok to ...
6
votes
2answers
2k views
How to use tr1 with Visual Studio 2010 (tr1::function)?
How does one start using the tr1 features of Visual Studio 2010? For a more specific case, I require the std::tr1::function. I tried including #include <tr1/functional> which reports as missing, ...
1
vote
1answer
184 views
Race condition on tr1::randgen() even with #pragma omp critical
Why there is a race condition according to valgrind with the following code?
#include <iostream>
#include <ctime>
#include <tr1/random>
#include <omp.h>
using namespace std;
...
1
vote
0answers
145 views
Microsoft's <regex> level of Unicode support?
What's the std::wregex Unicode support look like for Microsoft Visual C++ 2010?
Does it support Unicode character classes? [:Nd:] and such.
Support of collations such as digraphs? [.ae.] and such.
...
2
votes
2answers
881 views
TR1 not working with gcc and Cmake
I'm trying to use TR1 for some C++ project. Unfortunately I get an error and don't understand why or how I should do it correctly!
I'm working under Linux with gcc 4.4.5.
I get the error
...
0
votes
1answer
147 views
Random engine state and multiple deterministic independent random sequences
The C++ TR1 random number generation scheme has improved the old C runtime library in terms of keeping a separate state for random engines in different threads, or for independent random sequences. ...
5
votes
1answer
336 views
operator== and list::remove()
Test.h
#ifndef TEST_H
#define TEST_H
#include <memory>
template <class Type>
bool operator==(const std::weak_ptr<Type>& wp1, const std::weak_ptr<Type>& wp2)
{
...
2
votes
3answers
251 views
out of range random number generation in C++ using tr1
I am trying to generate number from a uniform distribution of real number in the range of [0, 1). But compiler is generating numbers which are out of [0, 1) range.
Here is the code:
int main(void) ...
4
votes
2answers
363 views
problems with tr1/regex. Prints opposite result
Any idea why the following code prints "no match"? Something related with the compiler or the version of the library? I compiled with g++ a.cpp.
#include <tr1/regex>
#include <iostream>
...
0
votes
1answer
170 views
tr1's bind on map container with a member function (yikes!)
I am having problems with the following functions:
typedef std::tr1::shared_ptr<Island> Island_sp_t;
typedef map<string, Island_sp_t>::value_type island_map_pair;
...
3
votes
5answers
1k views
Uniform random number generator in c++
I am trying to produce true random number in c++ with C++ TR1.
However, when run my program again, it produces same random numbers.The code is below.
I need true random number for each run as random ...
1
vote
1answer
177 views
How to reuse hashing function of string class for custom class in unordered map?
I'm defining an unordered_map in C++ like the following:
unordered_map<CustomClass, int, CustomClassHash, CustomClassEq> myMap;
Assume I have been able to successfully define CustomClassEq. I ...
1
vote
2answers
175 views
Regex in C++ to fetch from a regex expression a string in any part of the text
Example:
here is the string: "blablabla123:550:404:487blablabla500:488:474:401blablablabla"
here is what I'm using:
string reg = "(\\d{1,3}):(\\d{1,3}):(\\d{1,3}):(\\d{1,3})";
this obviously ...
2
votes
1answer
330 views
C++ Find element in list of tuples using predicate
I have a stl::list of tuples which I want to search for element using std::find_if using multiple type comparison in each. Can I associate a tuple type with a specific templated get() function? So ...
0
votes
1answer
953 views
tr1: boost vs vs2010, using shared_ptr without namespace
trying to compile old project that has many uses of shared_ptr with the vs2010.
so, i have precompiled header (stdafx.h) with:
..
using namespace std;
..
#include "boost/shared_ptr"
...
0
votes
3answers
983 views
How is the std::tr1::shared_ptr implemented?
I've been thinking about using shared pointers, and I know how to implement one myself--Don't want to do it, so I'm trying std::tr1::shared_ptr,and I have couple of questions...
How is the reference ...
1
vote
1answer
670 views
std::tr1::function assignment and binding
I'm trying to learn how to best use the std::function and the std::bind facilities
in the standard library - I'm interested in the TR1 versions, as that's what I
have available for now and I'm not ...
2
votes
1answer
535 views
C++ make_shared not available
While I have std::tr1::shared_ptr<T> available in my compiler, I don't
have make_shared.
Can someone point me to a proper implementation of make_shared? I see
that I need to use varargs to ...