diff options
| author | Andrew M. B. Boktor <[email protected]> | 2012-05-13 15:15:55 -0800 |
|---|---|---|
| committer | Andrew Boktor <[email protected]> | 2014-08-14 13:47:30 -0700 |
| commit | 5e96de01f52b5ea1d32f105dc9b9cee0012c7fdc (patch) | |
| tree | dfde2678623c243eaa3bba0c2a5a890b8fccb9eb | |
| parent | 64b193e80f4bc14edb0dd685f6c26c53a0a339c3 (diff) | |
Fixing a small bug
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 12523]
| -rw-r--r-- | libcuda/cuda_runtime_api.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcuda/cuda_runtime_api.cc b/libcuda/cuda_runtime_api.cc index 4cd2031..9bc7c3a 100644 --- a/libcuda/cuda_runtime_api.cc +++ b/libcuda/cuda_runtime_api.cc @@ -1219,7 +1219,7 @@ std::list<cuobjdumpSection> pruneSectionList(std::list<cuobjdumpSection> cuobjdu } std::list<cuobjdumpSection> prunedList; - std::map<char*, unsigned> cuobjdumpSectionMap; + std::map<std::string, unsigned> cuobjdumpSectionMap; for ( std::list<cuobjdumpSection>::iterator iter = cuobjdumpSectionList.begin(); iter != cuobjdumpSectionList.end(); iter++){ |
