 
            
            
            
            
                28 Sep
                
                    2017
                
            
            
                28 Sep
                
                '17
                
            
            
            
        
    
                8:04 p.m.
            
        On Thu, Sep 28, 2017 at 10:12 AM, degski via Boost <boost@lists.boost.org> wrote:
This:
boost::double_ended::devector<std::uint64_t> v ( 16, 123 );
does not work on both Clang/LLVM-6.0 and VS2017 on Windows. One has to explicitely cast 123 to std::uint64_t, i.e.
boost::double_ended::devector<std::uint64_t> v ( 16, ( std::uint64_t ) 123 );
does work.
Noted, thanks. Benedek