fork download
  1. // 2. copy assignment operator
  2. DLLInfo& operator=(const DLLInfo& that)
  3. {
  4. dbg(("[DBG]Start-DLLInfo& operator=(const DLLInfo& that)"));
  5. Instance = that.Instance;
  6. dbg(("[DBG]DLLInfo 1"));
  7. //Identifier.assign(that.Identifier);
  8. dbg(("[DBG]DLLInfo 2"));
  9. IsAMX = that.IsAMX;
  10. dbg(("[DBG]DLLInfo 3"));
  11. dwSupportFlags = that.dwSupportFlags;
  12. dbg(("[DBG]DLLInfo 4"));
  13. Load = that.Load;
  14. dbg(("[DBG]DLLInfo 5"));
  15. Unload = that.Unload;
  16. dbg(("[DBG]DLLInfo 6"));
  17. Supports = that.Supports;
  18. dbg(("[DBG]DLLInfo 7"));
  19. ProcessTick = that.ProcessTick;
  20. dbg(("[DBG]DLLInfo 8"));
  21. AmxLoad = that.AmxLoad;
  22. dbg(("[DBG]DLLInfo 9"));
  23. AmxUnload = that.AmxUnload;
  24. dbg(("[DBG]DLLInfo 10"));
  25. UseDestructor = that.UseDestructor;
  26. dbg(("[DBG]DLLInfo 11"));
  27. KeyboardHit = that.KeyboardHit;
  28. dbg(("[DBG]End-DLLInfo& operator=(const DLLInfo& that)"));
  29. return *this;
  30. }
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty