mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-04 05:30:32 -05:00 
			
		
		
		
	Merge pull request #2410 from srcejon/fix_2324
wdsp: Remove redundant code that causes stack overflow on Mac.
This commit is contained in:
		
						commit
						b3f83c33fa
					
				@ -444,6 +444,7 @@ EMNR::G::G(
 | 
				
			|||||||
    std::copy(Calculus::GG.begin(), Calculus::GG.end(), GG.begin());
 | 
					    std::copy(Calculus::GG.begin(), Calculus::GG.end(), GG.begin());
 | 
				
			||||||
    std::copy(Calculus::GGS.begin(), Calculus::GGS.end(), GGS.begin());
 | 
					    std::copy(Calculus::GGS.begin(), Calculus::GGS.end(), GGS.begin());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /* Removed as redundant and causes a stack overflow on Mac - see #2324
 | 
				
			||||||
    // We keep this pretty useless part just in case...
 | 
					    // We keep this pretty useless part just in case...
 | 
				
			||||||
    if ((fileb = fopen("calculus", "rb")))
 | 
					    if ((fileb = fopen("calculus", "rb")))
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
@ -462,7 +463,7 @@ EMNR::G::G(
 | 
				
			|||||||
            std::copy(ggs.begin(), ggs.end(), GGS.begin());
 | 
					            std::copy(ggs.begin(), ggs.end(), GGS.begin());
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        fclose(fileb);
 | 
					        fclose(fileb);
 | 
				
			||||||
    }
 | 
					    }*/
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void EMNR::G::calc_gamma0()
 | 
					void EMNR::G::calc_gamma0()
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user