🚑 fix compiler errors
This commit is contained in:
		
							parent
							
								
									6c7cde181c
								
							
						
					
					
						commit
						cf8251eb54
					
				
					 3 changed files with 4 additions and 20 deletions
				
			
		|  | @ -164,14 +164,6 @@ class iter_impl | |||
|         return *this; | ||||
|     } | ||||
| 
 | ||||
|     /// @copydoc operator=(const iter_impl<typename std::remove_const<BasicJsonType>::type>&)
 | ||||
|     iter_impl& operator=(const iter_impl<const BasicJsonType>& other) noexcept | ||||
|     { | ||||
|         m_object = other.m_object; | ||||
|         m_it = other.m_it; | ||||
|         return *this; | ||||
|     } | ||||
| 
 | ||||
|   private: | ||||
|     /*!
 | ||||
|     @brief set the iterator to the first value | ||||
|  |  | |||
|  | @ -718,14 +718,14 @@ class json_pointer | |||
| 
 | ||||
|                 case detail::value_t::array: | ||||
|                 { | ||||
|                     if (JSON_UNLIKELY(reference_token == "-")) | ||||
|                     if (JSON_HEDLEY_UNLIKELY(reference_token == "-")) | ||||
|                     { | ||||
|                         // "-" always fails the range check
 | ||||
|                         return false; | ||||
|                     } | ||||
| 
 | ||||
|                     // error condition (cf. RFC 6901, Sect. 4)
 | ||||
|                     if (JSON_UNLIKELY(reference_token.size() > 1 and reference_token[0] == '0')) | ||||
|                     if (JSON_HEDLEY_UNLIKELY(reference_token.size() > 1 and reference_token[0] == '0')) | ||||
|                     { | ||||
|                         JSON_THROW(detail::parse_error::create(106, 0, | ||||
|                                                                "array index '" + reference_token + | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue