lib/icu/Init: add "noexcept"
This commit is contained in:
		@@ -37,7 +37,7 @@ IcuInit()
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void
 | 
					void
 | 
				
			||||||
IcuFinish()
 | 
					IcuFinish() noexcept
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	IcuCollateFinish();
 | 
						IcuCollateFinish();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -28,12 +28,12 @@ void
 | 
				
			|||||||
IcuInit();
 | 
					IcuInit();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void
 | 
					void
 | 
				
			||||||
IcuFinish();
 | 
					IcuFinish() noexcept;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static inline void IcuInit() {}
 | 
					static inline void IcuInit() noexcept {}
 | 
				
			||||||
static inline void IcuFinish() {}
 | 
					static inline void IcuFinish() noexcept {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user