[eigen] Just a tiny typo en Dox docs |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen <eigen@xxxxxxxxxxxxxxxxxxx>
- Subject: [eigen] Just a tiny typo en Dox docs
- From: Jose Luis Blanco <joseluisblancoc@xxxxxxxxx>
- Date: Sun, 7 Nov 2010 23:09:00 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=2teasbbpwiwj0IxO+JJniv9S1YjFKMIwfSzcoqwEy2g=; b=mOGRVhuLWtOVnpz23WkMflslrOPaXQOG/Gwb3b6gAXjNsj3vl7u/5gSY7GJ1CC+FG8 nUXcsg0dA3FCoGp3Lu+n/eX20gkJemldC8fMBvclAhPh9bIum6nPPKcAgvWBP5W/kSLF B9eCtkgyVw9GDW5rULijLS1hgVG6oRXxIOAVo=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=ONiYo7hkvRVy5kxyFv2BqRdwP2nxEErt6Q2SeQZT74siN2ojsgJpv0CU6/h9W/14oU BSWTMtZZ4eWirgcnKN7Jeu7Qhu1d2Fyyp9rB0jDCJPXBr8inxcbvsxqmdXla5PMHwt6v eBU9jg1XOIfFRFhwkALHqPEYvdG2C735mUF84=
Please, anyone with write access to the repository, check this:
In: http://eigen.tuxfamily.org/dox-devel/TopicStlContainers.html
This line:
std::map<int, Eigen::Vector4f, std::less<int>,
Eigen::aligned_allocator<Eigen::Vector4f> >
I think it should be:
std::map<int, Eigen::Vector4f, std::less<int>,
Eigen::aligned_allocator<std::pair<const int, Eigen::Vector4f> > >
Best,
JL