Discussion:
[boost] Reminder: 1.65 closes for major changes tomorrow
Marshall Clow via Boost
2017-06-27 13:41:13 UTC
Permalink
Upcoming release dates:

28-Jun: Boost 1.65.0 closed for major changes
5-Jul: Boost 1.65.0 closed for all changes, except by permission of a
release manager.
8-Jul: Boost 1.65.0 closed for all changes
12-Jul: Boost 1.65.0 beta; master branch re-opened
2-Aug: Release closed for all changes, except by permission of a release
manager.
5-Aug: Boost 1.65.0 closed for all changes
9-Aug: Boost 1.65.0 release

-- Marshall

_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
Frédéric Bron via Boost
2017-06-27 14:18:22 UTC
Permalink
Post by Marshall Clow via Boost
28-Jun: Boost 1.65.0 closed for major changes
I take this opportunity to report an issue I have:
I submitted a patch for a bug many times and got no answer. I do not
know how to proceed to have it applied.
Could you tell me what to do?

https://svn.boost.org/trac10/ticket/9517

Thanks,

Frédéric

_______________________________________________
Unsubscribe & other changes: http://lists.boos
Peter Dimov via Boost
2017-06-27 14:32:18 UTC
Permalink
Post by Marshall Clow via Boost
28-Jun: Boost 1.65.0 closed for major changes
I submitted a patch for a bug many times and got no answer. I do not know
how to proceed to have it applied.
Could you tell me what to do?
https://svn.boost.org/trac10/ticket/9517
Have you tried to contact Christian Henning?


_______________________________________________
Unsubscribe & other changes: http://lis
Frédéric Bron via Boost
2017-06-27 15:11:57 UTC
Permalink
Post by Peter Dimov via Boost
I submitted a patch for a bug many times and got no answer. I do not know
how to proceed to have it applied.
Could you tell me what to do?
https://svn.boost.org/trac10/ticket/9517
Have you tried to contact Christian Henning?
No, is he the maintainer to GIL? I will contact him.
Thanks,

Frédéric

_______________________________________________
Unsubscribe & other changes: http
Michael Caisse via Boost
2017-06-27 15:38:15 UTC
Permalink
Post by Frédéric Bron via Boost
Post by Peter Dimov via Boost
I submitted a patch for a bug many times and got no answer. I do not know
how to proceed to have it applied.
Could you tell me what to do?
https://svn.boost.org/trac10/ticket/9517
Have you tried to contact Christian Henning?
No, is he the maintainer to GIL? I will contact him.
Thanks,
Hi Frédéric -

Christian is the maintainer. I looked at your patch and I guess I would
have used .max(). Regardless, can you please make a PR.

Sigh ... so I just looked and sadly master hasn't been updated for 7-years.

I'll independently contact Christian and figure out what we need to do
with this library.

Take care -
michael
--
Michael Caisse
Ciere Consulting
ciere.com

_______________________________________________
Unsubscribe & other changes: http://lists.boost.or
Frédéric Bron via Boost
2017-06-27 15:47:41 UTC
Permalink
Post by Michael Caisse via Boost
Christian is the maintainer. I looked at your patch and I guess I would
have used .max().
yes, both should give the same. I agree with max().
Post by Michael Caisse via Boost
Regardless, can you please make a PR.
OK, I have to understand what a pull request means.

Frédéric

_______________________________________________
Unsubscribe & other changes: http://lis
Peter Dimov via Boost
2017-06-27 16:00:40 UTC
Permalink
Post by Frédéric Bron via Boost
Post by Michael Caisse via Boost
Christian is the maintainer. I looked at your patch and I guess I would
have used .max().
yes, both should give the same. I agree with max().
constexpr max() is C++11 - the context here is a template parameter if I
understand correctly. static_cast<>(-1) works on C++03.


_______________________________________________
Unsubscribe & other changes: http://lis
Frédéric Bron via Boost
2017-06-27 17:37:47 UTC
Permalink
Post by Peter Dimov via Boost
constexpr max() is C++11 - the context here is a template parameter if I
understand correctly. static_cast<>(-1) works on C++03.
correct.

_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
Paul A. Bristow via Boost
2017-06-28 08:53:57 UTC
Permalink
-----Original Message-----
Sent: 27 June 2017 17:01
Cc: Peter Dimov
Subject: Re: [boost] Reminder: 1.65 closes for major changes tomorrow
Post by Frédéric Bron via Boost
Post by Michael Caisse via Boost
Christian is the maintainer. I looked at your patch and I guess I would
have used .max().
yes, both should give the same. I agree with max().
constexpr max() is C++11 - the context here is a template parameter if I
understand correctly. static_cast<>(-1) works on C++03.
Do any of the macros

BOOST_CONSTEXPR, BOOST_CONSTEXPR_OR_CONST, BOOST_STATIC_CONSTEXPR ...

http://www.boost.org/doc/libs/1_64_0/libs/config/doc/html/boost_config/boost_macro_reference.html

help you here?

Paul

---
Paul A. Bristow
Prizet Farmhouse
Kendal UK LA8 8AB
+44 (0) 1539 561830




_______________________________________________
Unsubscribe & other changes: http://
Frédéric Bron via Boost
2017-06-28 09:46:18 UTC
Permalink
Post by Paul A. Bristow via Boost
Post by Peter Dimov via Boost
constexpr max() is C++11 - the context here is a template parameter if I
understand correctly. static_cast<>(-1) works on C++03.
Do any of the macros
BOOST_CONSTEXPR, BOOST_CONSTEXPR_OR_CONST, BOOST_STATIC_CONSTEXPR ...
I do not think these macros are useful here: we do not define a
function here. We need numeric_limits<UInteger>::max() value at
compile time as a template parameter and in C++03, ::max() is not
constexpr so that we have to use static_cast<UInteger>(-1) to have it
work on all c++ versions.

Frédéric

_______________________________________________
Unsubscribe & other changes: http://lists.b

Paul A. Bristow via Boost
2017-06-28 08:53:57 UTC
Permalink
-----Original Message-----
Sent: 27 June 2017 17:01
Cc: Peter Dimov
Subject: Re: [boost] Reminder: 1.65 closes for major changes tomorrow
Post by Frédéric Bron via Boost
Post by Michael Caisse via Boost
Christian is the maintainer. I looked at your patch and I guess I would
have used .max().
yes, both should give the same. I agree with max().
constexpr max() is C++11 - the context here is a template parameter if I
understand correctly. static_cast<>(-1) works on C++03.
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
_______________________________________________
Unsubscribe & other c
Frédéric Bron via Boost
2017-06-27 19:48:32 UTC
Permalink
Post by Frédéric Bron via Boost
Post by Michael Caisse via Boost
Regardless, can you please make a PR.
OK, I have to understand what a pull request means.
I tried to follow this page but wasn't successful:
https://svn.boost.org/trac10/wiki/StartModPatchAndPullReq

In particular, for "Forking a Single Repo", I do not understand "Go to
the GitHub page for the library's repo, and fork it.". Apparently when
I forked, I forked the entire boost, not only gil.
Where can I find the library's repo?

Frédéric

_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi
Stefan Seefeld via Boost
2017-06-27 19:58:02 UTC
Permalink
Post by Frédéric Bron via Boost
Post by Frédéric Bron via Boost
Post by Michael Caisse via Boost
Regardless, can you please make a PR.
OK, I have to understand what a pull request means.
https://svn.boost.org/trac10/wiki/StartModPatchAndPullReq
In particular, for "Forking a Single Repo", I do not understand "Go to
the GitHub page for the library's repo, and fork it.". Apparently when
I forked, I forked the entire boost, not only gil.
Where can I find the library's repo?
https://github.com/boostorg/gil

(have a look at its .travis file - notably the 'install' section - to
see how to do a quick build and test locally, before you submit the PR)


Stefan
--
...ich hab' noch einen Koffer in Berlin...


_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mai
Loading...