mirror of
				https://github.com/Z3Prover/z3
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	Remove function arg names for deleted functions (#5176)
This commit is contained in:
		
							parent
							
								
									8e6ab5b1bf
								
							
						
					
					
						commit
						f4127bd6f3
					
				
					 1 changed files with 6 additions and 6 deletions
				
			
		| 
						 | 
				
			
			@ -106,8 +106,8 @@ namespace z3 {
 | 
			
		|||
    */
 | 
			
		||||
    class config {
 | 
			
		||||
        Z3_config    m_cfg;
 | 
			
		||||
        config(config const & s) = delete;
 | 
			
		||||
        config & operator=(config const & s) = delete;
 | 
			
		||||
        config(config const &) = delete;
 | 
			
		||||
        config & operator=(config const &) = delete;
 | 
			
		||||
    public:
 | 
			
		||||
        config() { m_cfg = Z3_mk_config(); }
 | 
			
		||||
        ~config() { Z3_del_config(m_cfg); }
 | 
			
		||||
| 
						 | 
				
			
			@ -170,8 +170,8 @@ namespace z3 {
 | 
			
		|||
        }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
        context(context const & s) = delete;
 | 
			
		||||
        context & operator=(context const & s) = delete;
 | 
			
		||||
        context(context const &) = delete;
 | 
			
		||||
        context & operator=(context const &) = delete;
 | 
			
		||||
 | 
			
		||||
        friend class scoped_context;
 | 
			
		||||
        context(Z3_context c) { set_context(c); }
 | 
			
		||||
| 
						 | 
				
			
			@ -395,8 +395,8 @@ namespace z3 {
 | 
			
		|||
    class array {
 | 
			
		||||
        std::unique_ptr<T[]> m_array;
 | 
			
		||||
        unsigned m_size;
 | 
			
		||||
        array(array const & s) = delete;
 | 
			
		||||
        array & operator=(array const & s) = delete;
 | 
			
		||||
        array(array const &) = delete;
 | 
			
		||||
        array & operator=(array const &) = delete;
 | 
			
		||||
    public:
 | 
			
		||||
        array(unsigned sz):m_array(new T[sz]),m_size(sz) {}
 | 
			
		||||
        template<typename T2>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue